* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #e0e0e0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.7;
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            background: linear-gradient(135deg, #f7d68a, #e5b94b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #c0c0c0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s, border-bottom 0.2s;
            padding-bottom: 4px;
            border-bottom: 1px solid transparent;
        }
        .nav-links a:hover {
            color: #f0d78a;
            border-bottom-color: #f0d78a;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin: 40px 0 20px;
            color: #f5f5f5;
            text-align: center;
            line-height: 1.2;
        }
        h1 span {
            background: linear-gradient(135deg, #f7d68a, #d4a843);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 500;
        }
        h2 {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 30px;
            color: #e8e8e8;
            border-left: 4px solid #dbb85c;
            padding-left: 20px;
        }
        h2.centered {
            text-align: center;
            border-left: none;
            padding-left: 0;
        }
        .section-block {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .section-block:last-of-type {
            border-bottom: none;
        }
        .hero-area {
            padding: 60px 0 80px;
            text-align: center;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 30px;
        }
        .hero-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 32px 20px;
            transition: transform 0.2s, background 0.2s;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .hero-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.07);
        }
        .hero-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 16px;
            background: #1a1a1a;
        }
        .hero-card h3 {
            font-size: 1.3rem;
            font-weight: 400;
            color: #f0e0b0;
            margin-bottom: 8px;
        }
        .hero-card p {
            color: #aaa;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            padding: 20px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 300;
            color: #f5d88a;
        }
        .stat-label {
            color: #999;
            font-size: 0.9rem;
            margin-top: 6px;
        }
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        .advantage-card {
            background: rgba(255, 255, 255, 0.02);
            padding: 28px 20px;
            border-radius: 12px;
            border-left: 3px solid #dbb85c;
        }
        .advantage-card h4 {
            color: #f0e0b0;
            font-weight: 400;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .advantage-card p {
            color: #aaa;
        }
        .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: 24px;
            border-radius: 12px;
            font-style: italic;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        .testimonial-card .author {
            margin-top: 16px;
            color: #dbb85c;
            font-style: normal;
            font-weight: 300;
        }
        .news-list {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .news-item {
            background: rgba(255, 255, 255, 0.02);
            padding: 24px 28px;
            border-radius: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .news-item .date {
            color: #b89a4a;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }
        .news-item h3 {
            font-weight: 400;
            font-size: 1.3rem;
            margin: 6px 0 10px;
            color: #f0e8d0;
        }
        .news-item p {
            color: #b0b0b0;
            line-height: 1.8;
        }
        .faq-item {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-weight: 400;
            font-size: 1.15rem;
            color: #e8dbb0;
            cursor: default;
            margin-bottom: 6px;
        }
        .faq-answer {
            color: #b0b0b0;
            padding-left: 10px;
            border-left: 2px solid #dbb85c;
            margin-top: 4px;
            line-height: 1.8;
        }
        .cta-area {
            text-align: center;
            padding: 70px 20px;
            background: rgba(255, 215, 0, 0.03);
            border-radius: 20px;
            margin: 20px 0;
        }
        .cta-area h2 {
            border-left: none;
            padding-left: 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 40px;
            background: linear-gradient(135deg, #dbb85c, #c4a34b);
            color: #0a0a0a;
            font-weight: 600;
            border-radius: 40px;
            text-decoration: none;
            transition: opacity 0.2s, transform 0.2s;
            margin-top: 16px;
        }
        .btn:hover {
            opacity: 0.85;
            transform: scale(1.02);
        }
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 40px;
            margin-top: 20px;
        }
        .partners-grid a {
            color: #aaa;
            text-decoration: none;
            font-size: 1rem;
            border-bottom: 1px solid transparent;
        }
        .partners-grid a:hover {
            color: #f0d78a;
            border-bottom-color: #f0d78a;
        }
        .geo-intro-text {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.05rem;
            color: #c0c0c0;
            line-height: 1.9;
        }
        footer {
            background: #0d0d0d;
            padding: 40px 20px 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 40px;
            font-size: 0.9rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-col p {
            color: #999;
            margin-bottom: 6px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            margin: 20px 0;
            justify-content: center;
        }
        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: #f0d78a;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            color: #777;
            font-size: 0.8rem;
        }
        .footer-bottom a {
            color: #999;
            text-decoration: none;
            margin: 0 6px;
        }
        .footer-bottom a:hover {
            color: #f0d78a;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .header-inner {
                flex-direction: column;
                gap: 16px;
            }
            .nav-links { gap: 16px; justify-content: center; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
        }
        .highlight-gold {
            color: #e8c86a;
        }