* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Georgia', serif; background: #3e2723; color: #d7ccc8; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(145deg, #3e2723, #5d4037); padding: 20px 0; border-bottom: 2px solid #a1887f; }
        nav { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .nav-links { display: flex; gap: 30px; flex-wrap: wrap; }
        .nav-links a { color: #d7ccc8; text-decoration: none; font-size: 18px; padding: 8px 16px; border-radius: 30px; transition: all 0.3s; background: rgba(255,255,255,0.05); }
        .nav-links a:hover { background: #a1887f; color: #3e2723; }
        .hero { background: linear-gradient(135deg, #4e342e, #6d4c41); padding: 80px 40px; border-radius: 20px; margin: 40px 0; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
        .hero h1 { font-size: 48px; color: #ffcc80; margin-bottom: 20px; text-shadow: 2px 2px 4px #3e2723; }
        .hero p { font-size: 20px; color: #bcaaa4; max-width: 800px; margin: 0 auto; }
        .section { background: #4e342e; margin: 40px 0; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
        .section h2 { color: #ffcc80; font-size: 32px; margin-bottom: 30px; border-left: 5px solid #a1887f; padding-left: 20px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .card { background: linear-gradient(145deg, #5d4037, #4e342e); padding: 25px; border-radius: 16px; border: 1px solid #6d4c41; transition: transform 0.3s, box-shadow 0.3s; }
        .card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.6); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 15px; }
        .card h3 { color: #ffcc80; font-size: 22px; margin-bottom: 10px; }
        .card p { color: #bcaaa4; font-size: 15px; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
        .stat-item { background: #5d4037; padding: 30px; border-radius: 16px; border: 1px solid #6d4c41; }
        .stat-item .num { font-size: 40px; color: #ffcc80; font-weight: bold; }
        .stat-item .label { color: #bcaaa4; margin-top: 10px; }
        .news-item { background: #5d4037; padding: 20px; margin-bottom: 20px; border-radius: 12px; border-left: 5px solid #a1887f; }
        .news-item .date { color: #a1887f; font-size: 14px; margin-bottom: 8px; }
        .news-item h3 { color: #ffcc80; font-size: 20px; margin-bottom: 10px; }
        .news-item p { color: #bcaaa4; }
        .faq-item { background: #5d4037; padding: 20px; margin-bottom: 15px; border-radius: 12px; }
        .faq-item h3 { color: #ffcc80; font-size: 18px; cursor: pointer; }
        .faq-item p { color: #bcaaa4; margin-top: 10px; }
        .geo-intro { background: #4e342e; padding: 30px; border-radius: 16px; margin: 30px 0; }
        .geo-intro p { color: #bcaaa4; font-size: 16px; line-height: 1.8; }
        footer { background: #2c1a16; padding: 40px 0; margin-top: 60px; border-top: 2px solid #6d4c41; }
        .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
        .footer-content p, .footer-content a { color: #bcaaa4; font-size: 14px; }
        .footer-content a { text-decoration: none; margin: 0 8px; }
        .footer-content a:hover { color: #ffcc80; }
        .footer-bottom { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid #4e342e; }
        .btn { display: inline-block; padding: 12px 30px; background: #a1887f; color: #3e2723; border-radius: 30px; text-decoration: none; font-weight: bold; transition: all 0.3s; }
        .btn:hover { background: #ffcc80; }
        .image-showcase { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 30px 0; }
        .image-showcase img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; border: 2px solid #6d4c41; }
        @media (max-width: 768px) {
            .hero h1 { font-size: 32px; }
            .nav-links { gap: 15px; }
            .section { padding: 25px; }
        }