* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Georgia', 'Times New Roman', serif; background: linear-gradient(135deg, #1a0000 0%, #2a0505 50%, #1a0000 100%); color: #f0e6d2; min-height: 100vh; line-height: 1.8; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(135deg, #4a0a0a 0%, #991b1b 100%); padding: 15px 0; border-bottom: 3px solid #d4a84b; box-shadow: 0 4px 20px rgba(153, 27, 27, 0.5); }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
        .logo { font-size: 1.8rem; font-weight: bold; color: #d4a84b; text-shadow: 2px 2px 8px rgba(0,0,0,0.7); letter-spacing: 2px; }
        .nav-links { display: flex; gap: 25px; flex-wrap: wrap; }
        .nav-links a { color: #f0e6d2; text-decoration: none; font-size: 1.05rem; padding: 8px 16px; border-radius: 30px; transition: all 0.3s; border: 1px solid transparent; }
        .nav-links a:hover { background: rgba(212, 168, 75, 0.25); border-color: #d4a84b; color: #d4a84b; transform: scale(1.05); }
        .hero { background: linear-gradient(135deg, rgba(74,10,10,0.9) 0%, rgba(153,27,27,0.8) 100%), url('/img/home.webp') center/cover no-repeat; padding: 100px 0 80px; text-align: center; border-bottom: 2px solid #d4a84b; margin-top: 0; }
        .hero h1 { font-size: 3.2rem; color: #d4a84b; text-shadow: 0 0 30px rgba(212,168,75,0.5); margin-bottom: 20px; letter-spacing: 3px; }
        .hero p { font-size: 1.3rem; max-width: 800px; margin: 0 auto 30px; color: #f5e6d0; }
        .hero .cta-btn { display: inline-block; background: linear-gradient(135deg, #d4a84b, #b8860b); color: #1a0000; padding: 16px 50px; border-radius: 50px; font-size: 1.3rem; font-weight: bold; text-decoration: none; transition: 0.3s; box-shadow: 0 8px 25px rgba(212,168,75,0.4); }
        .hero .cta-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(212,168,75,0.6); }
        .section-title { font-size: 2.2rem; color: #d4a84b; text-align: center; margin: 60px 0 40px; position: relative; padding-bottom: 15px; }
        .section-title::after { content: ''; display: block; width: 80px; height: 3px; background: #d4a84b; margin: 10px auto 0; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 30px 0; }
        .card { background: linear-gradient(145deg, #2a0505, #3a0a0a); border: 2px solid #d4a84b; border-radius: 20px; padding: 30px; transition: 0.3s; box-shadow: 0 8px 25px rgba(0,0,0,0.6); }
        .card:hover { transform: translateY(-8px); border-color: #f0c060; box-shadow: 0 15px 40px rgba(212,168,75,0.25); }
        .card img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; margin-bottom: 18px; border: 1px solid #5a2a2a; }
        .card h3 { color: #d4a84b; margin-bottom: 12px; font-size: 1.4rem; }
        .card p { color: #d4c4a8; font-size: 0.95rem; }
        .stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; text-align: center; }
        .stat-item { background: rgba(74,10,10,0.7); border: 1px solid #d4a84b; border-radius: 15px; padding: 30px 15px; }
        .stat-number { font-size: 2.8rem; font-weight: bold; color: #d4a84b; }
        .stat-label { font-size: 1rem; color: #c0b090; margin-top: 5px; }
        .news-list { display: flex; flex-direction: column; gap: 25px; }
        .news-item { background: linear-gradient(145deg, #2a0505, #3a0a0a); border-left: 5px solid #d4a84b; padding: 25px 30px; border-radius: 10px; transition: 0.3s; }
        .news-item:hover { background: #3a0a0a; border-left-color: #f0c060; }
        .news-item .date { color: #b09670; font-size: 0.9rem; margin-bottom: 8px; }
        .news-item h3 { color: #d4a84b; font-size: 1.3rem; margin-bottom: 10px; }
        .news-item p { color: #c8b89a; font-size: 0.95rem; }
        .news-item a { color: #d4a84b; text-decoration: none; }
        .news-item a:hover { text-decoration: underline; }
        .faq-item { background: rgba(42,5,5,0.8); border: 1px solid #4a2a1a; border-radius: 15px; padding: 25px; margin-bottom: 20px; }
        .faq-item h3 { color: #d4a84b; font-size: 1.2rem; margin-bottom: 12px; cursor: pointer; }
        .faq-item p { color: #c8b89a; font-size: 0.95rem; }
        .geo-content { background: rgba(42,5,5,0.6); border-radius: 20px; padding: 40px; margin: 30px 0; border: 1px solid #3a1a1a; }
        .geo-content p { font-size: 1.05rem; color: #d4c4a8; }
        .footer { background: linear-gradient(135deg, #2a0505, #1a0000); border-top: 3px solid #d4a84b; padding: 50px 0 30px; margin-top: 60px; }
        .footer a { color: #b09670; text-decoration: none; transition: 0.3s; }
        .footer a:hover { color: #d4a84b; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 25px; }
        .footer-info { text-align: center; color: #7a6a50; font-size: 0.9rem; line-height: 2; }
        .footer-info span { display: inline-block; margin: 0 10px; }
        .btn-link { display: inline-block; background: linear-gradient(135deg, #d4a84b, #b8860b); color: #1a0000; padding: 12px 35px; border-radius: 40px; text-decoration: none; font-weight: bold; transition: 0.3s; }
        .btn-link:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212,168,75,0.4); }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .header-inner { flex-direction: column; text-align: center; }
            .nav-links { justify-content: center; gap: 10px; }
            .nav-links a { font-size: 0.9rem; padding: 6px 12px; }
        }