* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Georgia', 'Times New Roman', serif; background: linear-gradient(135deg, #3e2723, #d7ccc8); color: #2c1e16; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: rgba(62, 39, 35, 0.92); padding: 18px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo { font-size: 1.8rem; font-weight: bold; color: #d7ccc8; letter-spacing: 2px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
        .nav-links { display: flex; gap: 22px; flex-wrap: wrap; }
        .nav-links a { color: #efebe9; text-decoration: none; font-size: 1rem; padding: 8px 16px; border-radius: 30px; background: rgba(215, 204, 200, 0.15); transition: 0.3s; border: 1px solid transparent; }
        .nav-links a:hover { background: #d7ccc8; color: #3e2723; border-color: #8d6e63; }
        h1 { font-size: 2.6rem; text-align: center; padding: 50px 20px 20px; color: #3e2723; text-shadow: 2px 2px 8px rgba(215,204,200,0.4); }
        h1 span { background: linear-gradient(135deg, #5d4037, #3e2723); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .geo-intro { background: rgba(255,248,240,0.7); padding: 35px; border-radius: 28px; margin: 30px 0; box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
        .geo-intro p { font-size: 1.1rem; color: #3e2723; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin: 40px 0; }
        .card { background: rgba(255,248,240,0.8); backdrop-filter: blur(4px); padding: 28px; border-radius: 30px; box-shadow: 0 10px 25px rgba(62,39,35,0.3); border: 1px solid #bcaaa4; transition: 0.3s; }
        .card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(62,39,35,0.4); }
        .card h2 { font-size: 1.5rem; margin-bottom: 15px; color: #4e342e; border-left: 6px solid #8d6e63; padding-left: 14px; }
        .card p { color: #4e342e; }
        .img-wrap { width: 100%; border-radius: 18px; margin: 15px 0; overflow: hidden; }
        .img-wrap img { width: 100%; height: auto; display: block; transition: 0.4s; }
        .img-wrap img:hover { transform: scale(1.02); }
        .btn-cta { display: inline-block; padding: 14px 38px; background: linear-gradient(135deg, #5d4037, #3e2723); color: #efebe9; border-radius: 50px; font-weight: bold; text-decoration: none; box-shadow: 0 6px 18px rgba(62,39,35,0.4); transition: 0.3s; }
        .btn-cta:hover { background: linear-gradient(135deg, #4e342e, #2c1e16); transform: scale(1.02); }
        .faq-item { margin: 18px 0; }
        .faq-question { font-weight: bold; cursor: pointer; background: rgba(215,204,200,0.5); padding: 14px 22px; border-radius: 30px; transition: 0.3s; }
        .faq-question:hover { background: rgba(215,204,200,0.8); }
        .faq-answer { padding: 16px 22px; display: none; background: rgba(255,248,240,0.5); border-radius: 20px; margin-top: 6px; }
        .faq-item.active .faq-answer { display: block; }
        .news-card { background: rgba(255,248,240,0.75); padding: 22px; border-radius: 24px; margin: 20px 0; border-left: 8px solid #6d4c41; }
        .news-date { color: #5d4037; font-size: 0.9rem; margin-bottom: 6px; }
        .news-title { font-size: 1.2rem; font-weight: bold; color: #3e2723; }
        .footer { background: rgba(62,39,35,0.95); color: #d7ccc8; padding: 40px 20px; margin-top: 50px; border-radius: 40px 40px 0 0; }
        .footer a { color: #d7ccc8; text-decoration: none; margin: 0 10px; }
        .footer a:hover { text-decoration: underline; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 20px 0; }
        @media (max-width: 768px) { h1 { font-size: 1.8rem; } .nav-links { justify-content: center; gap: 10px; } }