* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
        }
        body {
            line-height: 1.9;
            color: #2d2d2d;
            background-color: #fff8f0;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #e63946;
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #ffd166;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: white;
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd166;
            border-bottom: 2px solid #ffd166;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            padding: 50px 0;
        }
        h1 {
            font-size: 2.8rem;
            color: #e63946;
            text-align: center;
            margin-bottom: 50px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            color: #1d3557;
            margin: 70px 0 30px;
            padding-bottom: 12px;
            border-bottom: 3px solid #ffd166;
            line-height: 1.4;
        }
        h3 {
            font-size: 1.7rem;
            color: #e63946;
            margin: 40px 0 20px;
            line-height: 1.4;
        }
        h4 {
            font-size: 1.3rem;
            color: #1d3557;
            margin: 30px 0 15px;
            font-weight: 700;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #e63946;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .btn-container {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin: 60px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 18px 35px;
            border-radius: 10px;
            font-size: 1.3rem;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.4s ease;
            cursor: pointer;
            border: none;
            text-align: center;
            box-shadow: 0 5px 0 rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #2a9d8f;
            color: white;
        }
        .login-btn {
            background-color: #f4a261;
            color: #1d3557;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 0 rgba(0,0,0,0.2), 0 10px 20px rgba(0,0,0,0.15);
        }
        .download-btn:hover {
            background-color: #21867a;
        }
        .login-btn:hover {
            background-color: #e78f4c;
        }
        .image-container {
            text-align: center;
            margin: 50px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.18);
            border: 4px solid white;
        }
        .image-caption {
            text-align: center;
            font-size: 0.95rem;
            color: #666;
            margin-top: 12px;
            font-style: italic;
        }
        .stats-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.09);
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            min-width: 180px;
            padding: 15px;
            background-color: #fff5eb;
            border-radius: 10px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #e63946;
            margin-bottom: 8px;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #444;
            font-weight: 600;
        }
        .review-container {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.09);
        }
        .review-card {
            border-left: 5px solid #ffd166;
            padding: 25px 20px;
            margin-bottom: 30px;
            background-color: #fff8f0;
            border-radius: 0 10px 10px 0;
        }
        .reviewer {
            font-weight: 800;
            color: #1d3557;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .review-location {
            font-size: 0.95rem;
            color: #777;
            margin-bottom: 12px;
            font-style: italic;
        }
        .strategy-list {
            list-style-type: none;
            margin: 35px 0;
        }
        .strategy-list li {
            background-color: white;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.06);
            display: flex;
            align-items: flex-start;
            line-height: 1.8;
        }
        .strategy-list li:before {
            content: "🔥";
            margin-right: 18px;
            font-size: 1.8rem;
            margin-top: 3px;
        }
        .event-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            border-top: 6px solid #e63946;
        }
        .event-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #e63946;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        .event-title:before {
            content: "🎪";
            margin-right: 12px;
        }
        .event-date {
            font-size: 1rem;
            color: #666;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .faq-container {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.09);
        }
        .faq-item {
            margin-bottom: 30px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 25px;
        }
        .faq-question {
            font-size: 1.2rem;
            color: #1d3557;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .faq-question:before {
            content: "❓";
            margin-right: 12px;
        }
        .faq-answer {
            font-size: 1.05rem;
            color: #444;
            line-height: 1.8;
            text-align: justify;
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-section {
            flex: 1;
            min-width: 280px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #ffd166;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd166;
        }
        .footer-links {
            list-style-type: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd166;
            padding-left: 5px;
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            background-color: #2b4a72;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #ffd166;
            transform: translateY(-2px);
        }
        .tag:hover a {
            color: #1d3557;
        }
        .recommendation {
            text-align: center;
            padding: 25px;
            background-color: #2b4a72;
            border-radius: 12px;
            margin-bottom: 40px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .recommendation strong {
            color: #ffd166;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #3a5a8c;
            font-size: 1rem;
            color: #b0b0b0;
        }
        @media (max-width: 992px) {
            .logo {
                font-size: 1.8rem;
            }
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .logo {
                font-size: 1.6rem;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 30px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.1rem;
                margin-bottom: 40px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 60px 0 25px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 35px 0 18px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 22px;
            }
            .btn {
                padding: 15px 30px;
                font-size: 1.2rem;
                width: 100%;
                max-width: 350px;
            }
            .stats-card {
                padding: 30px 20px;
                gap: 20px;
            }
            .stat-item {
                min-width: 140px;
                padding: 12px;
            }
            .stat-number {
                font-size: 2rem;
            }
            .review-container, .faq-container {
                padding: 30px 20px;
            }
            .review-card {
                padding: 20px 15px;
            }
            .event-card {
                padding: 25px 20px;
            }
            .footer-container {
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .strategy-list li {
                padding: 20px;
            }
            .strategy-list li:before {
                font-size: 1.5rem;
                margin-right: 12px;
            }
            .tags-container {
                gap: 10px;
            }
            .tag {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }
