* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
            color: #f0f0f0;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            line-height: 1.7;
            min-height: 100vh;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            padding: 24px 0 16px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .header-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .logo h1 {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #fff;
            background: linear-gradient(to right, #e8c87a, #f5e6b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.2s;
        }
        .nav-links a:hover {
            color: #fff;
            border-bottom-color: #e8c87a;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        .hero p {
            max-width: 800px;
            margin: 0 auto 30px;
            color: #bbb;
            font-size: 1.1rem;
        }
        .hero-img {
            margin: 30px auto 0;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero-img img {
            width: 220px;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid rgba(255,215,0,0.2);
            box-shadow: 0 12px 24px rgba(0,0,0,0.6);
            transition: transform 0.3s;
        }
        .hero-img img:hover {
            transform: scale(1.03);
        }
        .section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #f5e6b0;
            letter-spacing: 0.5px;
        }
        .geo-block {
            background: rgba(255,255,255,0.03);
            border-left: 4px solid #e8c87a;
            padding: 24px 28px;
            border-radius: 6px;
            color: #ddd;
            font-size: 1rem;
            line-height: 1.8;
        }
        .geo-block strong {
            color: #f5e6b0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 28px;
            margin: 20px 0;
        }
        .stat-card {
            background: rgba(255,255,255,0.03);
            padding: 28px 16px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(255,215,0,0.08);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #e8c87a;
        }
        .stat-label {
            color: #aaa;
            margin-top: 8px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .feature-item {
            background: rgba(255,255,255,0.02);
            padding: 28px 20px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.04);
        }
        .feature-item h3 {
            color: #f5e6b0;
            margin-bottom: 12px;
        }
        .feature-item p {
            color: #bbb;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
            padding: 20px 0;
        }
        .partner-item {
            background: rgba(255,255,255,0.04);
            padding: 16px 28px;
            border-radius: 40px;
            border: 1px solid rgba(255,215,0,0.1);
            color: #ccc;
            font-weight: 500;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .testimonial-card {
            background: rgba(255,255,255,0.02);
            padding: 28px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.05);
            font-style: italic;
            color: #bbb;
        }
        .testimonial-author {
            margin-top: 16px;
            color: #e8c87a;
            font-style: normal;
            font-weight: 500;
        }
        .faq-item {
            background: rgba(255,255,255,0.02);
            margin-bottom: 16px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.04);
        }
        .faq-question {
            padding: 18px 22px;
            font-weight: 600;
            cursor: default;
            color: #f5e6b0;
            background: rgba(255,215,0,0.04);
        }
        .faq-answer {
            padding: 0 22px 20px;
            color: #bbb;
            line-height: 1.8;
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .news-item {
            background: rgba(255,255,255,0.02);
            padding: 24px 28px;
            border-radius: 8px;
            border-left: 4px solid #e8c87a;
        }
        .news-item h3 {
            color: #fff;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        .news-date {
            color: #e8c87a;
            font-size: 0.85rem;
            margin-bottom: 12px;
        }
        .news-summary {
            color: #bbb;
        }
        .cta-section {
            text-align: center;
            padding: 60px 20px;
            background: rgba(255,215,0,0.04);
            border-radius: 12px;
            margin: 40px 0;
        }
        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .cta-section p {
            max-width: 600px;
            margin: 0 auto 30px;
            color: #bbb;
        }
        .btn {
            display: inline-block;
            background: #e8c87a;
            color: #0a0a0a;
            padding: 14px 40px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.2s;
        }
        .btn:hover {
            background: #f5e6b0;
            transform: translateY(-2px);
        }
        .footer {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 40px 0 24px;
            margin-top: 60px;
            color: #888;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            margin-bottom: 20px;
            justify-content: center;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: #fff;
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.85rem;
            border-top: 1px solid rgba(255,255,255,0.04);
            padding-top: 20px;
            margin-top: 16px;
        }
        .footer-address {
            text-align: center;
            margin: 12px 0;
            color: #777;
        }
        .image-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin: 40px 0;
        }
        .image-row img {
            width: 180px;
            height: 120px;
            object-fit: cover;
            border-radius: 6px;
            border: 1px solid rgba(255,215,0,0.1);
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                gap: 12px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-img img {
                width: 160px;
                height: 110px;
            }
        }