* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%); color: #4a2c0a; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        nav { background: linear-gradient(135deg, #f97316, #4a2c0a); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3); }
        .nav-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
        .nav-links a { color: #fff; text-decoration: none; font-weight: 600; padding: 8px 20px; border-radius: 25px; transition: all 0.3s; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); }
        .nav-links a:hover { background: #fff; color: #f97316; transform: translateY(-2px); }
        h1 { text-align: center; padding: 50px 20px 20px; font-size: 2.5rem; background: linear-gradient(135deg, #f97316, #4a2c0a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; }
        .geo-intro { background: #fff; border-radius: 24px; padding: 40px; margin: 30px auto; max-width: 900px; box-shadow: 0 8px 32px rgba(249, 115, 22, 0.12); border: 1px solid rgba(249, 115, 22, 0.2); font-size: 1.1rem; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin: 40px 0; }
        .card { background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-radius: 24px; padding: 30px; box-shadow: 0 8px 32px rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.15); transition: transform 0.3s, box-shadow 0.3s; }
        .card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(249, 115, 22, 0.2); }
        .card h3 { color: #f97316; margin-bottom: 15px; font-size: 1.4rem; }
        .card img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; margin-bottom: 15px; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
        .stat-item { text-align: center; padding: 20px; background: #fff; border-radius: 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
        .stat-number { font-size: 2.5rem; font-weight: 800; color: #f97316; }
        .stat-label { color: #4a2c0a; margin-top: 8px; }
        .news-item { padding: 20px 0; border-bottom: 1px solid #fee2c6; }
        .news-item:last-child { border-bottom: none; }
        .news-date { color: #f97316; font-size: 0.9rem; margin-bottom: 6px; }
        .news-title { font-size: 1.2rem; font-weight: 700; color: #4a2c0a; margin-bottom: 8px; }
        .news-summary { color: #6b4c2a; }
        .faq-item { padding: 20px 0; border-bottom: 1px solid #fee2c6; }
        .faq-item:last-child { border-bottom: none; }
        .faq-q { font-weight: 700; color: #f97316; margin-bottom: 8px; font-size: 1.1rem; }
        .faq-a { color: #4a2c0a; }
        footer { background: linear-gradient(135deg, #4a2c0a, #2d1a06); color: #ddd; padding: 40px 0; margin-top: 60px; }
        footer a { color: #f97316; text-decoration: none; transition: color 0.3s; }
        footer a:hover { color: #fff; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin: 20px 0; }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; margin-top: 20px; }
        .btn { display: inline-block; background: linear-gradient(135deg, #f97316, #ea580c); color: #fff; padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 700; transition: transform 0.3s, box-shadow 0.3s; }
        .btn:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4); }
        @media (max-width: 768px) { h1 { font-size: 1.8rem; } .nav-links { gap: 12px; } .nav-links a { font-size: 0.9rem; padding: 6px 14px; } }
        .hero { text-align: center; padding: 60px 20px; }
        .hero h2 { font-size: 2rem; margin-bottom: 20px; }
        .hero p { max-width: 700px; margin: 0 auto 30px; font-size: 1.1rem; }
        .testimonial { background: #fff; padding: 25px; border-radius: 20px; border-left: 6px solid #f97316; }
        .testimonial p { font-style: italic; }
        .testimonial-author { font-weight: 700; margin-top: 10px; color: #f97316; }