        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f5f7fa; }

        header { background: #1a2a3a; box-shadow: 0 4px 15px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
                nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .menu { flex: 1; min-width: 200px; }
        .menu ul { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; justify-content: flex-start; }
        .menu ul li a { color: white; text-decoration: none; font-weight: 500; transition: color 0.3s; padding: 8px 12px; border-radius: 8px; }
        .menu ul li a:hover { background: rgba(255,255,255,0.1); color: #ff6b6b; }

        .lang-switcher { display: flex; gap: 8px; background: rgba(255,255,255,0.1); padding: 5px 10px; border-radius: 30px; flex-shrink: 0; }
        .lang-btn { background: none; border: none; color: white; cursor: pointer; padding: 5px 12px; border-radius: 20px; font-size: 14px; transition: all 0.3s; }
        .lang-btn.active { background: #ff6b6b; color: white; }
        .lang-btn:hover:not(.active) { background: rgba(255,255,255,0.2); }

        .hero { background: linear-gradient(135deg, #696969 0%, #808080 100%); color: white; text-align: center; padding: 80px 20px; }
        .hero h1 { font-size: 3rem; margin-bottom: 20px; font-family: 'Times New Roman', serif; }
        .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; opacity: 0.9; }

        .main-content { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
        .news-section { background: white; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden; }
        .news-header { background: linear-gradient(135deg, #764ba2, #667eea); color: white; padding: 20px 30px; }
        .news-header h2 { font-size: 1.5rem; display: flex; align-items: center; gap: 12px; }
        .news-container { padding: 20px; max-height: 600px; overflow-y: auto; }
        .news-container::-webkit-scrollbar { width: 6px; }
        .news-container::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 3px; }
        .news-container::-webkit-scrollbar-thumb { background: #667eea; border-radius: 3px; }
        .news-list { display: flex; flex-direction: column; gap: 25px; }

        footer { background: #1a2a3a; color: #cbd5e0; margin-top: 60px; padding: 40px 20px 20px; }
        .footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .footer-col h3 { color: white; font-size: 1.2rem; margin-bottom: 15px; padding-bottom: 8px; border-bottom: 2px solid #ff6b6b; display: inline-block; }
        .footer-col p { margin-bottom: 8px; font-size: 0.9rem; }
        .footer-col i { width: 25px; color: #ff6b6b; }
        .footer-col form input, .footer-col form textarea { width: 100%; padding: 8px; margin-bottom: 10px; border: none; border-radius: 8px; background: #2d3a4a; color: white; }
        .footer-col form button { background: #ff6b6b; color: white; border: none; padding: 8px 16px; border-radius: 8px; cursor: pointer; width: 100%; }
        .subscribe-btn { background: #ff6b6b; color: white; border: none; padding: 10px; border-radius: 25px; cursor: pointer; width: 100%; margin-top: 10px; }
        .social-icons { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
        .social-icon { width: 40px; height: 40px; background: #2d3a4a; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
        .social-icon a { color: white; font-size: 1.2rem; }
        .social-icon:hover { background: #ff6b6b; transform: translateY(-3px); }
        .copyright { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid #2d3a4a; font-size: 0.8rem; }

        .form-popup { display: none; position: fixed; bottom: 40px; left: 50px; border: 3px solid #ff6b6b; z-index: 9; background: white; max-width: 300px; border-radius: 16px; }
        .form-container { padding: 20px; }
        .form-container input { width: 100%; padding: 8px; margin-bottom: 10px; border: 1px solid #ddd; border-radius: 8px; }
        .form-container .btn { background: #ff6b6b; color: white; padding: 8px; border: none; border-radius: 8px; cursor: pointer; width: 100%; margin-top: 5px; }
        .form-container .cancel { background: #6c757d; }
        .loading-spinner { text-align: center; padding: 40px; color: #718096; }

        @media (max-width: 992px) {
            nav { flex-direction: column; align-items: stretch; }
            .lang-switcher { align-self: flex-end; margin-top: 5px; }
            .menu ul { justify-content: center; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .menu ul { gap: 10px; }
            .menu ul li a { padding: 6px 10px; font-size: 14px; }
            .lang-switcher { align-self: center; }
            .footer-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) { .hero h1 { font-size: 2rem; } }
