* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; background: linear-gradient(145deg, #3e2723 0%, #d7ccc8 100%); color: #2c1e16; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: rgba(62, 39, 35, 0.9); backdrop-filter: blur(6px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); border-bottom: 2px solid #a1887f; position: sticky; top: 0; z-index: 100; }
        .nav-links { display: flex; justify-content: center; gap: 30px; padding: 16px 20px; flex-wrap: wrap; }
        .nav-links a { color: #efebe9; font-weight: 600; text-decoration: none; padding: 6px 14px; border-radius: 30px; background: rgba(161, 136, 127, 0.2); transition: all 0.3s; letter-spacing: 1px; }
        .nav-links a:hover { background: #a1887f; color: #3e2723; transform: scale(1.05); }
        h1 { font-size: 2.8rem; text-align: center; padding: 40px 20px 10px; color: #f5f0eb; text-shadow: 4px 4px 0 #3e2723; letter-spacing: 2px; }
        .geo-section { background: rgba(255, 248, 241, 0.85); padding: 40px 30px; border-radius: 40px 40px 20px 20px; margin: 30px 0; box-shadow: 0 10px 30px rgba(62,39,35,0.3); }
        .grid-2, .grid-3, .grid-4 { display: grid; gap: 30px; margin: 40px 0; }
        .grid-2 { grid-template-columns: repeat(2,1fr); }
        .grid-3 { grid-template-columns: repeat(3,1fr); }
        .grid-4 { grid-template-columns: repeat(4,1fr); }
        .card { background: #f5ebe6; border-radius: 30px; padding: 25px; box-shadow: 0 12px 24px -8px rgba(62,39,35,0.4); transition: all 0.3s; border: 1px solid #bcaaa4; }
        .card:hover { transform: translateY(-6px); box-shadow: 0 20px 36px -8px #3e2723; }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 20px; margin-bottom: 15px; }
        .btn-cta { display: inline-block; background: #3e2723; color: #f5f0eb; padding: 14px 40px; border-radius: 60px; font-weight: 700; text-decoration: none; transition: 0.3s; border: 2px solid #a1887f; }
        .btn-cta:hover { background: #a1887f; color: #3e2723; }
        .stat-number { font-size: 3rem; font-weight: 800; color: #3e2723; }
        .faq-item { background: #f5ebe6; border-radius: 20px; margin: 15px 0; padding: 20px 25px; border-left: 8px solid #3e2723; }
        .news-item { border-bottom: 1px dashed #bcaaa4; padding: 20px 0; }
        .news-date { font-size: 0.9rem; color: #6d4c41; font-weight: 600; }
        footer { background: #2c1e16; color: #d7ccc8; padding: 40px 20px 20px; margin-top: 60px; border-radius: 40px 40px 0 0; }
        footer a { color: #bcaaa4; text-decoration: none; margin: 0 10px; }
        footer a:hover { color: #fff; }
        .flex-center { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        @media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } h1 { font-size: 2rem; } }