* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background: #f9fafc;
            color: #1a1e2b;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* Header */
        header {
            background: #ffffff;
            border-bottom: 1px solid #eef0f4;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-weight: 600;
            font-size: 1.3rem;
            color: #1a73e8;
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }
        .nav-links a:hover {
            color: #1a73e8;
        }
        /* Section */
        section {
            padding: 60px 0;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #0b1a2e;
            margin-bottom: 24px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: #0b1a2e;
            letter-spacing: -0.3px;
        }
        h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        p {
            margin-bottom: 16px;
            color: #3b4a5c;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .card {
            background: #ffffff;
            border-radius: 20px;
            padding: 24px;
            border: 1px solid #e9ecf0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            transition: transform 0.2s ease;
        }
        .card:hover {
            transform: translateY(-4px);
            border-color: #d0d9e6;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
            background: #eef2f7;
        }
        .badge {
            display: inline-block;
            background: #e8f0fe;
            color: #1a73e8;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 30px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        .date-marker {
            color: #7a8a9f;
            font-size: 0.85rem;
            margin-bottom: 8px;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .geo-box {
            background: #ffffff;
            border-radius: 24px;
            padding: 32px;
            border: 1px solid #e6eaef;
        }
        .faq-item {
            border-bottom: 1px solid #e6eaef;
            padding: 24px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .faq-answer {
            color: #4a5a6e;
        }
        footer {
            background: #ffffff;
            border-top: 1px solid #eef0f4;
            padding: 40px 0 24px;
            font-size: 0.9rem;
            color: #5a6a7e;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            justify-content: center;
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #2c3e50;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-links a:hover {
            color: #1a73e8;
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #eef0f4;
            padding-top: 20px;
            margin-top: 20px;
        }
        .btn {
            display: inline-block;
            background: #1a73e8;
            color: #ffffff;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.2s;
        }
        .btn:hover {
            background: #1557b0;
        }
        .hero {
            background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
            border-radius: 32px;
            padding: 48px 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        .hero-text {
            flex: 1 1 300px;
        }
        .hero img {
            flex: 1 1 300px;
            max-width: 100%;
            border-radius: 24px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .header-inner { flex-direction: column; gap: 12px; }
            .nav-links { gap: 16px; justify-content: center; }
        }