* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #ff6b35 0%, #ff2d55 50%, #7b2ff7 100%);
            color: #1a1a1a;
            line-height: 1.6;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(90deg, #fff, #ffe0b2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            background: rgba(255,255,255,0.15);
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        h1 {
            font-size: 2.8rem;
            text-align: center;
            padding: 2rem 0 1rem;
            background: linear-gradient(90deg, #fff, #ffd54f, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }

        .geo-intro {
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            padding: 2.5rem;
            margin: 2rem 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .geo-intro p {
            font-size: 1.1rem;
            color: #333;
            line-height: 1.9;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin: 3rem 0 2rem;
            color: #fff;
            text-shadow: 0 2px 15px rgba(0,0,0,0.3);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ffd54f, #ff6b35);
            margin: 0.5rem auto;
            border-radius: 2px;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .card {
            background: linear-gradient(135deg, #fff8e1, #fff0f0);
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            border: 1px solid rgba(255,255,255,0.5);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.2);
        }

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1.2rem;
        }

        .card h3 {
            font-size: 1.3rem;
            color: #d84315;
            margin-bottom: 0.8rem;
        }

        .card p {
            color: #555;
            font-size: 0.95rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .stat-item {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.3);
            transition: 0.3s;
        }

        .stat-item:hover {
            background: rgba(255,255,255,0.25);
            transform: scale(1.03);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffd54f;
            display: block;
        }

        .stat-label {
            color: #fff;
            font-size: 1rem;
            margin-top: 0.5rem;
            opacity: 0.9;
        }

        .advantages-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .advantage-item {
            background: rgba(255,255,255,0.9);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .advantage-item .emoji {
            font-size: 2.5rem;
            display: block;
            margin-bottom: 1rem;
        }

        .faq-list {
            display: grid;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .faq-item {
            background: rgba(255,255,255,0.95);
            border-radius: 16px;
            padding: 1.8rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .faq-item h3 {
            color: #bf360c;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }

        .faq-item p {
            color: #444;
        }

        .news-list {
            display: grid;
            gap: 2rem;
            margin: 2rem 0;
        }

        .news-item {
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: 0.3s;
        }

        .news-item:hover {
            transform: translateX(5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .news-date {
            color: #e65100;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .news-item h3 {
            color: #1a1a1a;
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }

        .news-item p {
            color: #555;
        }

        .cta-section {
            background: linear-gradient(135deg, #ff8a65, #7b2ff7);
            border-radius: 30px;
            padding: 3rem;
            text-align: center;
            margin: 3rem 0;
            color: #fff;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto 1.5rem;
        }

        .btn {
            display: inline-block;
            background: #fff;
            color: #d84315;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            background: #ffd54f;
        }

        footer {
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(15px);
            color: #fff;
            padding: 2.5rem 0;
            margin-top: 4rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-content h4 {
            color: #ffd54f;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-content p, .footer-content a {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            line-height: 1.8;
        }

        .footer-content a {
            text-decoration: none;
        }

        .footer-content a:hover {
            color: #ffd54f;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 0.85rem;
        }

        .footer-bottom a {
            color: #ffd54f;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        .partner-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 1.5rem 0;
        }

        .partner-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            background: rgba(255,255,255,0.1);
            font-size: 0.85rem;
            transition: 0.3s;
        }

        .partner-links a:hover {
            background: rgba(255,255,255,0.2);
            color: #ffd54f;
        }

        .brand-story {
            background: rgba(255,255,255,0.9);
            border-radius: 24px;
            padding: 2.5rem;
            margin: 2rem 0;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .brand-story p {
            color: #333;
            font-size: 1.05rem;
            line-height: 1.9;
        }

        .highlight-section {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 2.5rem;
            margin: 2rem 0;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .highlight-section h2 {
            color: #fff;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .highlight-section p {
            color: rgba(255,255,255,0.9);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.92);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .testimonial-card p {
            font-style: italic;
            color: #444;
        }

        .testimonial-card .author {
            font-weight: 700;
            color: #d84315;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                padding: 1.5rem 0 0.5rem;
            }
            .header-inner {
                flex-direction: column;
                align-items: center;
            }
            .nav-links {
                justify-content: center;
                gap: 0.8rem;
            }
            .nav-links a {
                font-size: 0.85rem;
                padding: 0.4rem 0.8rem;
            }
            .geo-intro {
                padding: 1.5rem;
            }
            .card-grid, .stats-grid, .advantages-list {
                grid-template-columns: 1fr;
            }
        }