* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, sans-serif; background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); color: #f5e6d3; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        nav { background: rgba(20, 20, 40, 0.85); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255, 215, 180, 0.25); padding: 14px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 8px 32px rgba(0,0,0,0.6); }
        .nav-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
        .nav-links a { color: #f5d6b8; text-decoration: none; font-weight: 500; letter-spacing: 0.5px; padding: 6px 14px; border-radius: 30px; transition: 0.3s; background: rgba(255, 200, 150, 0.05); border: 1px solid transparent; }
        .nav-links a:hover { background: rgba(255, 190, 140, 0.2); border-color: #e8b48c; color: #ffdcc0; }
        h1 { font-size: 2.8rem; text-align: center; padding: 50px 20px 20px; font-weight: 300; letter-spacing: 3px; background: linear-gradient(135deg, #f5c6a0, #e8b48c, #d9a07a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 30px rgba(230, 170, 130, 0.3); }
        h2 { font-size: 2rem; color: #ecc9b0; border-left: 6px solid #d9a07a; padding-left: 18px; margin: 40px 0 25px; font-weight: 300; letter-spacing: 2px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin: 30px 0; }
        .card { background: rgba(255, 220, 190, 0.07); backdrop-filter: blur(5px); border-radius: 24px; padding: 28px 22px; border: 1px solid rgba(220, 180, 150, 0.2); box-shadow: 0 12px 40px rgba(0,0,0,0.4); transition: 0.4s; }
        .card:hover { transform: translateY(-6px); border-color: #e8b48c; box-shadow: 0 20px 50px rgba(200, 150, 100, 0.15); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; margin-bottom: 18px; border: 1px solid rgba(255,210,170,0.2); }
        .card h3 { color: #f0cfb8; font-size: 1.4rem; font-weight: 400; margin-bottom: 12px; }
        .card p { color: #d4bfae; font-size: 0.95rem; }
        .geo-text { background: rgba(255, 215, 180, 0.05); border-radius: 30px; padding: 30px 35px; margin: 20px 0 40px; border: 1px solid #b8947a40; font-size: 1.05rem; color: #e2ccbb; }
        .faq-item { background: rgba(255, 220, 190, 0.04); border-radius: 20px; padding: 24px 28px; margin-bottom: 20px; border-left: 4px solid #d9a07a; }
        .faq-item h4 { color: #f0cfb8; font-size: 1.2rem; font-weight: 400; margin-bottom: 12px; }
        .faq-item p { color: #d4bfae; }
        .news-item { background: rgba(255, 220, 190, 0.04); border-radius: 20px; padding: 24px 28px; margin-bottom: 20px; border: 1px solid #b8947a30; display: flex; flex-wrap: wrap; gap: 20px; }
        .news-item img { width: 100px; height: 100px; object-fit: cover; border-radius: 16px; border: 1px solid #b8947a40; }
        .news-content { flex: 1; min-width: 200px; }
        .news-content h3 { color: #f0cfb8; font-size: 1.2rem; font-weight: 400; margin-bottom: 6px; }
        .news-date { color: #b8947a; font-size: 0.85rem; margin-bottom: 10px; display: inline-block; background: rgba(200,160,130,0.15); padding: 2px 12px; border-radius: 20px; }
        .news-content p { color: #d4bfae; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; text-align: center; }
        .stat-num { font-size: 2.6rem; font-weight: 300; color: #f5d6b8; background: linear-gradient(135deg, #f5c6a0, #e8b48c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .stat-label { color: #c4aa98; margin-top: 6px; font-size: 0.9rem; }
        footer { background: rgba(10, 10, 24, 0.9); backdrop-filter: blur(10px); border-top: 1px solid #b8947a30; padding: 40px 20px; margin-top: 60px; }
        footer p, footer a { color: #b8947a; font-size: 0.9rem; }
        footer .friend-links { margin: 20px 0; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: center; }
        footer .friend-links a { color: #d4bfae; text-decoration: none; border-bottom: 1px dotted #b8947a50; }
        footer .friend-links a:hover { color: #f5d6b8; }
        .footer-info { text-align: center; max-width: 700px; margin: 0 auto; line-height: 2; }
        .cta-btn { background: linear-gradient(135deg, #d9a07a, #c2875f); border: none; padding: 14px 40px; border-radius: 50px; color: #1a1a2e; font-weight: 600; font-size: 1.1rem; cursor: pointer; transition: 0.3s; display: inline-block; text-decoration: none; letter-spacing: 1px; }
        .cta-btn:hover { transform: scale(1.05); box-shadow: 0 12px 40px #d9a07a40; }
        .center { text-align: center; }
        @media (max-width: 768px) { h1 { font-size: 2rem; } .nav-links { gap: 12px; } }