* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(135deg, #f97316 0%, #4a2c0a 100%); color: #1a1a2e; min-height: 100vh; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(255,255,255,0.1); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.2); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
        .nav-links { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
        .nav-links a { color: #fdf2e9; text-decoration: none; font-weight: 600; padding: 8px 16px; border-radius: 25px; transition: 0.3s; font-size: 16px; }
        .nav-links a:hover { background: rgba(249,115,22,0.4); color: #fff; box-shadow: 0 4px 20px rgba(249,115,22,0.3); }
        h1 { text-align: center; padding: 50px 20px 20px; font-size: 2.6em; color: #fff; text-shadow: 0 4px 12px rgba(0,0,0,0.3); background: linear-gradient(135deg, #f97316, #ffd8a8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .geo-desc { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: 24px; padding: 30px; margin: 20px 0; color: #fef3e2; line-height: 1.8; font-size: 16px; border: 1px solid rgba(255,255,255,0.2); }
        .geo-desc p { margin-bottom: 10px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin: 40px 0; }
        .card { background: rgba(255,255,255,0.2); backdrop-filter: blur(16px); border-radius: 24px; padding: 25px; border: 1px solid rgba(255,255,255,0.25); box-shadow: 0 10px 40px rgba(0,0,0,0.15); transition: transform 0.3s, box-shadow 0.3s; color: #3a2a1a; }
        .card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(249,115,22,0.3); }
        .card img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; margin-bottom: 15px; }
        .card h3 { font-size: 1.5em; margin-bottom: 10px; color: #4a2c0a; }
        .card p { line-height: 1.7; color: #5a3d2e; }
        .section-title { text-align: center; font-size: 2.2em; margin: 60px 0 30px; color: #fef3e2; text-shadow: 0 2px 8px rgba(0,0,0,0.3); position: relative; }
        .section-title::after { content: ''; display: block; width: 80px; height: 4px; background: #f97316; margin: 10px auto; border-radius: 2px; }
        .news-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
        .news-item { background: rgba(255,255,255,0.2); backdrop-filter: blur(12px); padding: 20px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2); }
        .news-item .date { color: #f97316; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
        .news-item h4 { font-size: 1.2em; margin-bottom: 8px; color: #4a2c0a; }
        .news-item p { color: #5a4a3a; line-height: 1.6; }
        .faq-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
        .faq-item { background: rgba(255,255,255,0.2); backdrop-filter: blur(12px); border-radius: 20px; padding: 20px; border: 1px solid rgba(255,255,255,0.2); }
        .faq-item h4 { color: #f97316; font-size: 1.2em; margin-bottom: 10px; cursor: pointer; }
        .faq-item p { color: #5a4a3a; line-height: 1.7; }
        footer { background: rgba(0,0,0,0.5); backdrop-filter: blur(10px); color: #f0e6d3; padding: 40px 20px 20px; margin-top: 60px; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
        footer a { color: #f97316; text-decoration: none; margin: 0 10px; }
        footer a:hover { text-decoration: underline; }
        footer .footer-links { margin: 15px 0; }
        footer .footer-info { font-size: 14px; opacity: 0.8; }
        .btn-cta { display: inline-block; padding: 14px 36px; background: linear-gradient(135deg, #f97316, #d97706); color: #fff; border-radius: 30px; text-decoration: none; font-weight: 700; box-shadow: 0 8px 25px rgba(249,115,22,0.4); transition: 0.3s; margin: 10px 5px; }
        .btn-cta:hover { transform: scale(1.05); box-shadow: 0 12px 35px rgba(249,115,22,0.6); }
        .flex-center { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .highlight-badge { background: #f97316; color: #fff; padding: 6px 14px; border-radius: 30px; font-size: 13px; font-weight: 600; display: inline-block; margin-bottom: 10px; }
        @media (max-width: 768px) { h1 { font-size: 1.8em; } .nav-links { gap: 12px; } .nav-links a { font-size: 13px; padding: 6px 12px; } }