* {
            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, #0a0a0a 0%, #1a1a1a 100%);
            color: #f0f0f0;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 24px;
        }
        header {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.4rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: #fff;
            text-decoration: none;
        }
        .logo span {
            color: #d4af37;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.2s;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #fff;
            border-bottom-color: #d4af37;
        }
        .hero {
            padding: 80px 0 60px;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }
        .hero h1 span {
            color: #d4af37;
        }
        .hero p {
            font-size: 1.2rem;
            color: #aaa;
            max-width: 720px;
            margin: 0 auto 32px;
        }
        .hero-img {
            max-width: 100%;
            border-radius: 12px;
            margin-top: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }
        h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 32px;
            color: #fff;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: #d4af37;
        }
        h3 {
            font-size: 1.3rem;
            color: #e0e0e0;
            margin-bottom: 12px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 24px;
        }
        .grid-2 { grid-template-columns: repeat(2,1fr); }
        .grid-3 { grid-template-columns: repeat(3,1fr); }
        .grid-4 { grid-template-columns: repeat(4,1fr); }
        .card {
            background: rgba(255,255,255,0.04);
            border-radius: 12px;
            padding: 24px;
            transition: transform 0.2s, background 0.2s;
            border: 1px solid rgba(255,255,255,0.06);
        }
        .card:hover {
            transform: translateY(-4px);
            background: rgba(255,255,255,0.08);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 16px;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #d4af37;
            line-height: 1.2;
            margin-bottom: 4px;
        }
        .stat-label {
            color: #aaa;
            font-size: 0.9rem;
        }
        .news-item {
            padding: 20px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .news-item:last-child { border-bottom: none; }
        .news-date {
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 6px;
        }
        .news-title {
            font-size: 1.15rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }
        .news-summary {
            color: #bbb;
            font-size: 0.95rem;
        }
        .faq-item {
            background: rgba(255,255,255,0.03);
            border-radius: 10px;
            padding: 20px 24px;
            margin-bottom: 16px;
            border-left: 3px solid #d4af37;
        }
        .faq-q {
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            font-size: 1.05rem;
        }
        .faq-a {
            color: #bbb;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .geo-intro {
            background: rgba(255,255,255,0.02);
            border-radius: 12px;
            padding: 32px;
            margin-top: 20px;
        }
        .geo-intro p {
            color: #ccc;
            font-size: 1rem;
            line-height: 1.8;
        }
        .cta {
            text-align: center;
            padding: 80px 0;
        }
        .cta h2 {
            display: block;
        }
        .cta h2::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .btn {
            display: inline-block;
            padding: 14px 40px;
            background: #d4af37;
            color: #0a0a0a;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1rem;
            margin-top: 24px;
            transition: background 0.3s, transform 0.2s;
        }
        .btn:hover {
            background: #e0c04a;
            transform: scale(1.02);
        }
        footer {
            padding: 40px 0 20px;
            border-top: 1px solid rgba(255,255,255,0.06);
            color: #999;
            font-size: 0.9rem;
        }
        footer a {
            color: #bbb;
            text-decoration: none;
        }
        footer a:hover {
            color: #fff;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            margin-bottom: 20px;
            justify-content: center;
        }
        .footer-info {
            text-align: center;
            line-height: 2;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .nav-links { gap: 16px; margin-top: 12px; }
        }
        .brand-story img {
            width: 100%;
            border-radius: 12px;
            margin-bottom: 16px;
        }
        .timeline-item {
            padding-left: 24px;
            border-left: 2px solid #d4af37;
            margin-bottom: 28px;
        }
        .timeline-item h4 {
            color: #d4af37;
            margin-bottom: 4px;
        }
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .partners-grid img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            filter: grayscale(0.8);
            opacity: 0.7;
            transition: all 0.3s;
        }
        .partners-grid img:hover {
            filter: grayscale(0);
            opacity: 1;
        }