* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2c2c2c;
            background-color: #fff9f1;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #d93b43;
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 15px rgba(0,0,0,0.18);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #ffc145;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
        }
        .logo span {
            color: white;
            margin-left: 8px;
        }
        .logo emoji {
            margin-right: 10px;
        }
        .nav-links {
            display: flex;
            gap: 40px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffc145;
            border-bottom: 3px solid #ffc145;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        main {
            padding: 60px 0;
        }
        h1 {
            font-size: 3rem;
            color: #d93b43;
            text-align: center;
            margin-bottom: 60px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.12);
            line-height: 1.4;
        }
        h2 {
            font-size: 2.3rem;
            color: #1a365d;
            margin: 80px 0 35px;
            padding-bottom: 15px;
            border-bottom: 4px solid #ffc145;
            line-height: 1.5;
        }
        h3 {
            font-size: 1.8rem;
            color: #d93b43;
            margin: 45px 0 25px;
            line-height: 1.5;
        }
        h4 {
            font-size: 1.4rem;
            color: #1a365d;
            margin: 35px 0 18px;
            font-weight: 700;
        }
        p {
            margin-bottom: 28px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: 800;
            color: #d93b43;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .btn-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin: 70px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            border-radius: 12px;
            font-size: 1.4rem;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.4s ease;
            cursor: pointer;
            border: none;
            text-align: center;
            box-shadow: 0 6px 0 rgba(0,0,0,0.22);
            min-width: 220px;
        }
        .download-btn {
            background-color: #238376;
            color: white;
        }
        .login-btn {
            background-color: #f79e6b;
            color: #1a365d;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 0 rgba(0,0,0,0.22), 0 12px 25px rgba(0,0,0,0.18);
        }
        .download-btn:hover {
            background-color: #1d7066;
        }
        .login-btn:hover {
            background-color: #e88c5a;
        }
        .image-container {
            text-align: center;
            margin: 60px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            border: 5px solid white;
        }
        .image-caption {
            text-align: center;
            font-size: 1rem;
            color: #666;
            margin-top: 15px;
            font-style: italic;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .stats-card {
            background-color: white;
            border-radius: 18px;
            padding: 45px;
            margin: 50px 0;
            box-shadow: 0 10px 35px rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            min-width: 200px;
            padding: 20px;
            background-color: #fff5e6;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            color: #d93b43;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #444;
            font-weight: 600;
        }
        .review-container {
            background-color: white;
            border-radius: 18px;
            padding: 45px;
            margin: 50px 0;
            box-shadow: 0 10px 35px rgba(0,0,0,0.1);
        }
        .review-card {
            border-left: 6px solid #ffc145;
            padding: 30px 25px;
            margin-bottom: 35px;
            background-color: #fff9f1;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        }
        .reviewer {
            font-weight: 800;
            color: #1a365d;
            margin-bottom: 10px;
            font-size: 1.15rem;
            display: flex;
            align-items: center;
        }
        .reviewer emoji {
            margin-right: 10px;
        }
        .review-location {
            font-size: 1rem;
            color: #777;
            margin-bottom: 15px;
            font-style: italic;
        }
        .strategy-list {
            list-style-type: none;
            margin: 40px 0;
        }
        .strategy-list li {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 25px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.07);
            display: flex;
            align-items: flex-start;
            line-height: 1.8;
        }
        .strategy-list li:before {
            content: "🌶️";
            margin-right: 20px;
            font-size: 2rem;
            margin-top: 5px;
        }
        .event-card {
            background-color: white;
            border-radius: 18px;
            padding: 35px;
            margin-bottom: 35px;
            box-shadow: 0 9px 25px rgba(0,0,0,0.09);
            border-top: 7px solid #d93b43;
        }
        .event-title {
            font-size: 1.6rem;
            font-weight: 800;
            color: #d93b43;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .event-title:before {
            content: "🎉";
            margin-right: 15px;
        }
        .event-date {
            font-size: 1.05rem;
            color: #666;
            margin-bottom: 25px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .event-date emoji {
            margin-right: 8px;
        }
        .faq-container {
            background-color: white;
            border-radius: 18px;
            padding: 45px;
            margin: 50px 0;
            box-shadow: 0 10px 35px rgba(0,0,0,0.1);
        }
        .faq-item {
            margin-bottom: 35px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 30px;
        }
        .faq-question {
            font-size: 1.25rem;
            color: #1a365d;
            font-weight: 700;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
        }
        .faq-question:before {
            content: "❓";
            margin-right: 15px;
        }
        .faq-answer {
            font-size: 1.1rem;
            color: #444;
            line-height: 1.8;
            text-align: justify;
        }
        .community-card {
            background-color: #fff5e6;
            border-radius: 15px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .community-title {
            font-size: 1.5rem;
            color: #1a365d;
            font-weight: 800;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .community-title emoji {
            margin-right: 12px;
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .community-link {
            background-color: white;
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            color: #d93b43;
            text-decoration: none;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .community-link:hover {
            background-color: #d93b43;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.08);
        }
        footer {
            background-color: #1a365d;
            color: white;
            padding: 70px 0 40px;
            margin-top: 100px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            margin-bottom: 60px;
        }
        .footer-section {
            flex: 1;
            min-width: 300px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ffc145;
            padding-bottom: 12px;
            border-bottom: 3px solid #ffc145;
        }
        .footer-links {
            list-style-type: none;
        }
        .footer-links li {
            margin-bottom: 18px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        .footer-links a:before {
            content: "🌶️";
            margin-right: 10px;
            opacity: 0.7;
        }
        .footer-links a:hover {
            color: #ffc145;
            padding-left: 8px;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        .tag {
            background-color: #2c4a7d;
            padding: 12px 25px;
            border-radius: 35px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #ffc145;
            transform: translateY(-3px);
        }
        .tag:hover a {
            color: #1a365d;
        }
        .recommendation {
            text-align: center;
            padding: 30px;
            background-color: #2c4a7d;
            border-radius: 15px;
            margin-bottom: 50px;
            font-size: 1.15rem;
            line-height: 1.9;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .recommendation strong {
            color: #ffc145;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #3a5a8c;
            font-size: 1.05rem;
            color: #b0b0b0;
        }
        @media (max-width: 1200px) {
            .logo {
                font-size: 2rem;
            }
            .nav-links {
                gap: 30px;
            }
            h1 {
                font-size: 2.7rem;
            }
            h2 {
                font-size: 2.1rem;
            }
            h3 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 992px) {
            .logo {
                font-size: 1.8rem;
            }
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.4rem;
                margin-bottom: 50px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 70px 0 30px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
            }
            .stat-item {
                min-width: 180px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 1.7rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #d93b43;
                padding: 35px;
                gap: 25px;
                box-shadow: 0 12px 15px rgba(0,0,0,0.18);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 45px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 60px 0 25px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 35px 0 18px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 25px;
            }
            .btn {
                padding: 18px 35px;
                font-size: 1.3rem;
                width: 100%;
                max-width: 380px;
            }
            .stats-card {
                padding: 35px 25px;
                gap: 25px;
            }
            .stat-item {
                min-width: 150px;
                padding: 15px;
            }
            .stat-number {
                font-size: 2.2rem;
            }
            .review-container, .faq-container {
                padding: 35px 25px;
            }
            .review-card {
                padding: 25px 20px;
            }
            .event-card {
                padding: 30px 25px;
            }
            .footer-container {
                gap: 40px;
            }
            .image-container {
                margin: 50px 0;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.6rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .strategy-list li {
                padding: 25px;
            }
            .strategy-list li:before {
                font-size: 1.8rem;
                margin-right: 15px;
            }
            .tags-container {
                gap: 12px;
            }
            .tag {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
            .footer-section {
                min-width: 100%;
            }
            .btn-container {
                gap: 20px;
            }
        }
