* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background: linear-gradient(145deg, #fff9f0 0%, #fef3e6 100%);
            color: #2d1b0e;
            line-height: 1.6;
        }
        a {
            color: #f97316;
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #d95e0c;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #f97316 0%, #4a2c0a 100%);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(249,115,22,0.3);
        }
        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #ffedd5;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        .nav-links a {
            color: #fff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 30px;
            transition: background 0.2s;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.15);
            color: #ffedd5;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f97316, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin: 40px 0 12px;
            line-height: 1.3;
        }
        .geo-intro {
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(12px);
            border-radius: 32px;
            padding: 40px 32px;
            margin: 20px 0 40px;
            box-shadow: 0 8px 32px rgba(249,115,22,0.08);
            border: 1px solid rgba(249,115,22,0.15);
        }
        .geo-intro p {
            font-size: 1.05rem;
            color: #3a2a1a;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #4a2c0a;
            margin: 50px 0 25px;
            position: relative;
            display: inline-block;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 60%;
            height: 4px;
            background: linear-gradient(90deg, #f97316, #fb923c);
            border-radius: 4px;
            margin-top: 6px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 24px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
        .card {
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(10px);
            border-radius: 28px;
            padding: 28px 22px;
            border: 1px solid rgba(249,115,22,0.1);
            box-shadow: 0 8px 24px rgba(0,0,0,0.03);
            transition: all 0.25s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(249,115,22,0.12);
            border-color: #f97316;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 14px;
        }
        .card h3 {
            font-size: 1.3rem;
            color: #4a2c0a;
            margin-bottom: 8px;
        }
        .card p {
            color: #5a4a3a;
            font-size: 0.95rem;
        }
        .hero-banner {
            background: linear-gradient(135deg, #4a2c0a 0%, #7c4a1a 50%, #f97316 100%);
            border-radius: 40px;
            padding: 60px 40px;
            margin: 20px 0;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        .hero-banner h2 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.3;
        }
        .hero-banner p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 500px;
        }
        .hero-banner img {
            width: 100%;
            max-width: 320px;
            border-radius: 24px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(10px);
            border-radius: 32px;
            padding: 32px 24px;
            border: 1px solid rgba(249,115,22,0.1);
        }
        .stat-item {
            text-align: center;
        }
        .stat-item .number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f97316, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-item .label {
            color: #5a4a3a;
            font-weight: 500;
            margin-top: 4px;
        }
        .faq-item {
            margin-bottom: 20px;
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(6px);
            border-radius: 24px;
            padding: 20px 24px;
            border: 1px solid rgba(249,115,22,0.08);
        }
        .faq-item h4 {
            font-size: 1.15rem;
            color: #4a2c0a;
            margin-bottom: 8px;
            cursor: pointer;
        }
        .faq-item p {
            color: #4a3a2a;
            font-size: 0.98rem;
        }
        .news-card {
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(10px);
            border-radius: 28px;
            padding: 0;
            overflow: hidden;
            border: 1px solid rgba(249,115,22,0.08);
            box-shadow: 0 4px 16px rgba(0,0,0,0.02);
        }
        .news-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .news-card .news-body {
            padding: 18px 20px 22px;
        }
        .news-card .news-date {
            font-size: 0.8rem;
            color: #f97316;
            font-weight: 600;
        }
        .news-card h3 {
            font-size: 1.2rem;
            margin: 6px 0 8px;
        }
        .news-card p {
            color: #5a4a3a;
            font-size: 0.92rem;
        }
        .partner-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .partner-links a {
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(6px);
            padding: 10px 22px;
            border-radius: 40px;
            font-weight: 600;
            border: 1px solid rgba(249,115,22,0.1);
        }
        footer {
            background: linear-gradient(135deg, #4a2c0a 0%, #2d1b0e 100%);
            color: #ddd;
            padding: 50px 20px 30px;
            margin-top: 60px;
            border-radius: 40px 40px 0 0;
        }
        footer a {
            color: #fb923c;
        }
        footer a:hover {
            color: #fed7aa;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #fff;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-grid p, .footer-grid li {
            font-size: 0.9rem;
            line-height: 1.8;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            text-align: center;
            font-size: 0.85rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
        }
        .footer-bottom a {
            margin: 0 6px;
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: #fff;
            font-weight: 700;
            padding: 14px 36px;
            border-radius: 60px;
            font-size: 1.1rem;
            transition: 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn-cta:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(249,115,22,0.4);
            color: #fff;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .hero-banner { padding: 30px 20px; }
            .hero-banner h2 { font-size: 1.6rem; }
        }