* { margin: 0; padding: 0; box-sizing: border-box; }
        :root { --primary: #003366; --secondary: #FF6600; --dark: #1a1a2e; --light: #f5f5f5; --white: #ffffff; --gray: #666666; }
        body { font-family: 'Roboto', sans-serif; line-height: 1.6; color: var(--dark); background: var(--white); }
        header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000; }
        .header-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 80px; }
        .logo { font-size: 24px; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 10px; text-decoration: none; }
        .logo-icon { font-size: 32px; }
        nav { display: flex; align-items: center; gap: 30px; }
        .nav-links { display: flex; list-style: none; gap: 25px; }
        .nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 15px; transition: all 0.3s ease; }
        .nav-links a:hover { color: var(--secondary); }
        .breadcrumb { margin-top: 80px; background: var(--light); padding: 20px; text-align: center; }
        .breadcrumb a { color: var(--gray); text-decoration: none; }
        .hero-section { background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); color: var(--white); padding: 80px 20px; text-align: center; }
        .hero-content { max-width: 900px; margin: 0 auto; }
        .hero-content h1 { font-size: 48px; margin-bottom: 20px; }
        .hero-content p { font-size: 20px; opacity: 0.9; }
        .news-section { padding: 100px 20px; background: var(--light); }
        .news-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
        .news-card { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; }
        .news-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
        .news-image { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 60px; background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); }
        .news-content { padding: 30px; }
        .news-category { display: inline-block; background: var(--secondary); color: var(--white); padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 500; margin-bottom: 15px; }
        .news-date { color: var(--gray); font-size: 13px; margin-bottom: 10px; }
        .news-content h3 { font-size: 20px; color: var(--primary); margin-bottom: 10px; }
        .news-content p { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 15px; }
        .news-link { color: var(--secondary); text-decoration: none; font-weight: 500; }
        footer { background: var(--dark); color: var(--white); padding: 60px 20px 30px; }
        .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
        .footer-section h4 { font-size: 18px; margin-bottom: 20px; color: var(--secondary); }
        .footer-section ul { list-style: none; }
        .footer-section ul li { margin-bottom: 10px; }
        .footer-section ul li a { color: rgba(255,255,255,0.7); text-decoration: none; }
        .footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 14px; color: rgba(255,255,255,0.5); }
        @media (max-width: 768px) { .hero-content h1 { font-size: 32px; } .nav-links { display: none; } .news-grid { grid-template-columns: 1fr; } }
        .lang-switch { display: flex; gap: 10px; font-size: 14px; } .lang-switch button { padding: 8px 15px; border: 1px solid var(--primary); background: transparent; color: var(--primary); cursor: pointer; border-radius: 4px; } .lang-switch button:hover { background: var(--primary); color: #fff; }