* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif; background: linear-gradient(135deg, #3e2723 0%, #5d4037 30%, #8d6e63 60%, #d7ccc8 100%); color: #3e2723; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(62,39,35,0.85); backdrop-filter: blur(12px); padding: 15px 0; border-bottom: 2px solid #bcaaa4; position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
        .logo { font-size: 1.8rem; font-weight: 800; color: #efebe9; letter-spacing: 1px; text-shadow: 2px 2px 0 #3e2723; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
        .nav-links a { color: #d7ccc8; text-decoration: none; font-weight: 600; font-size: 1rem; padding: 6px 12px; border-radius: 30px; transition: all 0.3s; background: rgba(215,204,200,0.08); border: 1px solid transparent; }
        .nav-links a:hover { background: #8d6e63; color: #efebe9; border-color: #a1887f; }
        .hero-section { text-align: center; padding: 60px 20px 40px; background: radial-gradient(circle at 20% 30%, #8d6e63 0%, #3e2723 90%); border-radius: 24px; margin: 30px 0; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
        .hero-section h1 { font-size: 2.8rem; font-weight: 800; color: #efebe9; margin-bottom: 18px; text-shadow: 0 4px 10px rgba(0,0,0,0.4); }
        .hero-section p { font-size: 1.2rem; color: #bcaaa4; max-width: 720px; margin: 0 auto 24px; }
        .geo-text { background: rgba(239,235,233,0.15); padding: 28px 24px; border-radius: 18px; margin: 20px 0 0; color: #d7ccc8; font-size: 1.05rem; border-left: 6px solid #a1887f; }
        .geo-text strong { color: #efebe9; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin: 40px 0; }
        .card { background: rgba(255,255,255,0.08); backdrop-filter: blur(6px); border-radius: 20px; padding: 24px; border: 1px solid rgba(161,136,127,0.3); transition: transform 0.3s, box-shadow 0.3s; color: #efebe9; }
        .card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,0.4); background: rgba(255,255,255,0.13); }
        .card h3 { font-size: 1.5rem; margin-bottom: 12px; color: #efebe9; }
        .card p { color: #bcaaa4; }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 14px; margin-bottom: 14px; border: 2px solid #6d4c41; }
        .section-title { font-size: 2.2rem; font-weight: 700; color: #efebe9; margin: 48px 0 24px; text-align: center; text-shadow: 0 2px 6px rgba(0,0,0,0.3); }
        .faq-item { background: rgba(255,255,255,0.06); border-radius: 16px; margin-bottom: 16px; padding: 20px 24px; border-left: 4px solid #a1887f; }
        .faq-item h4 { font-size: 1.2rem; color: #efebe9; margin-bottom: 8px; }
        .faq-item p { color: #bcaaa4; }
        .news-list { display: flex; flex-direction: column; gap: 20px; }
        .news-item { background: rgba(255,255,255,0.07); border-radius: 16px; padding: 24px; border: 1px solid rgba(161,136,127,0.2); }
        .news-item .date { color: #a1887f; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
        .news-item h3 { color: #efebe9; font-size: 1.3rem; margin-bottom: 10px; }
        .news-item p { color: #bcaaa4; }
        footer { background: rgba(62,39,35,0.9); padding: 36px 20px; margin-top: 60px; border-top: 2px solid #6d4c41; color: #bcaaa4; font-size: 0.95rem; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: center; margin-bottom: 18px; }
        .footer-links a { color: #d7ccc8; text-decoration: none; }
        .footer-links a:hover { text-decoration: underline; color: #efebe9; }
        .footer-info { text-align: center; line-height: 1.8; }
        .btn { display: inline-block; background: #6d4c41; color: #efebe9; padding: 12px 32px; border-radius: 40px; text-decoration: none; font-weight: 700; transition: all 0.3s; border: 1px solid #a1887f; }
        .btn:hover { background: #5d4037; transform: scale(1.02); }
        .flex-center { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; text-align: center; }
        .stat-item { padding: 20px; background: rgba(0,0,0,0.2); border-radius: 16px; }
        .stat-item .num { font-size: 2.4rem; font-weight: 800; color: #efebe9; }
        .stat-item .label { color: #bcaaa4; margin-top: 4px; }
        @media (max-width: 640px) { .hero-section h1 { font-size: 2rem; } .section-title { font-size: 1.6rem; } }