* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Georgia', 'Times New Roman', serif; background: linear-gradient(135deg, #3e2723 0%, #5d4037 30%, #8d6e63 70%, #d7ccc8 100%); color: #3e2723; line-height: 1.7; }
        .container { max-width: 1300px; margin: 0 auto; padding: 20px; }
        header { background: #4e342e; border-bottom: 3px solid #a1887f; padding: 20px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
        .header-wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .logo { font-size: 2.2rem; font-weight: bold; color: #efebe9; text-shadow: 3px 3px 0 #3e2723; letter-spacing: 2px; }
        .nav-links { display: flex; gap: 25px; flex-wrap: wrap; }
        .nav-links a { color: #d7ccc8; text-decoration: none; font-size: 1.1rem; padding: 8px 16px; border-radius: 30px; transition: all 0.3s; border: 1px solid transparent; }
        .nav-links a:hover { color: #fff; background: #6d4c41; border-color: #a1887f; }
        h1 { font-size: 3rem; color: #efebe9; text-align: center; margin: 40px 0 20px; text-shadow: 4px 4px 0 #3e2723; letter-spacing: 1px; }
        h2 { font-size: 2.2rem; color: #efebe9; margin: 50px 0 25px; border-left: 8px solid #a1887f; padding-left: 20px; }
        h3 { color: #4e342e; font-size: 1.5rem; margin: 15px 0; }
        .card { background: #efebe9; border-radius: 20px; padding: 30px; margin: 25px 0; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border: 1px solid #bcaaa4; }
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
        .flex-center { display: flex; align-items: center; justify-content: center; }
        img { max-width: 100%; height: auto; border-radius: 16px; box-shadow: 0 8px 20px rgba(0,0,0,0.2); transition: transform 0.4s; margin: 10px 0; }
        img:hover { transform: scale(1.02); }
        .geo-text { background: #d7ccc8; padding: 25px; border-radius: 16px; font-size: 1.1rem; line-height: 1.9; margin: 20px 0; border-left: 10px solid #6d4c41; }
        .btn { display: inline-block; background: #5d4037; color: #efebe9; padding: 12px 35px; border-radius: 50px; text-decoration: none; font-weight: bold; transition: all 0.3s; border: 2px solid #a1887f; }
        .btn:hover { background: #3e2723; border-color: #efebe9; }
        .stats-box { background: #4e342e; color: #efebe9; padding: 30px; border-radius: 20px; text-align: center; }
        .stats-number { font-size: 3rem; font-weight: bold; color: #d7ccc8; }
        .news-item { background: #fff; border-radius: 16px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); margin-bottom: 20px; border-left: 6px solid #8d6e63; }
        .news-date { color: #6d4c41; font-size: 0.9rem; font-weight: bold; margin-bottom: 8px; }
        .faq-item { background: #d7ccc8; padding: 20px; border-radius: 16px; margin: 15px 0; cursor: pointer; transition: all 0.3s; border-bottom: 3px solid #8d6e63; }
        .faq-item summary { font-size: 1.2rem; font-weight: bold; color: #3e2723; }
        .faq-item p { margin-top: 15px; }
        footer { background: #3e2723; color: #bcaaa4; padding: 40px 0 20px; margin-top: 60px; border-top: 4px solid #6d4c41; }
        footer a { color: #d7ccc8; text-decoration: none; }
        footer a:hover { color: #fff; text-decoration: underline; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin: 20px 0; }
        .footer-bottom { text-align: center; border-top: 1px solid #5d4037; padding-top: 20px; margin-top: 20px; }
        .inline-img { max-width: 100%; height: auto; border-radius: 12px; }
        .hero-section { text-align: center; padding: 60px 20px; background: rgba(78, 52, 46, 0.8); border-radius: 30px; margin: 30px 0; }
        .hero-section p { color: #efebe9; font-size: 1.3rem; max-width: 800px; margin: 20px auto; }
        @media (max-width: 768px) { h1 { font-size: 2rem; } .header-wrap { flex-direction: column; gap: 15px; } .nav-links { justify-content: center; } }