:root {
    --primary: #D32F2F; --primary-dark: #B71C1C; --accent: #FFC107;
    --dark: #212121; --gray: #616161; --light-bg: #F5F5F5; --white: #FFFFFF;
    --shadow: 0 4px 12px rgba(0,0,0,0.08); --radius: 8px;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Roboto', sans-serif; background: var(--light-bg); color: var(--dark); line-height:1.6; }
.container { max-width: 1200px; margin:0 auto; padding:0 20px; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
a:hover { color: var(--primary); }
ul { list-style: none; }

.top-bar { background: var(--dark); color: #ccc; font-size: 0.85rem; padding: 8px 0; }
.navbar { background: var(--white); position: sticky; top:0; z-index:1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display:flex; justify-content:space-between; align-items:center; height:70px; }
.logo { font-family: 'Merriweather', serif; font-weight:900; font-size:1.6rem; color: var(--primary); letter-spacing: -0.5px; }
.nav-links { display:flex; gap:2rem; }
.nav-links a { font-weight:500; font-size: 0.95rem; text-transform: uppercase; color: var(--dark); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); border-bottom: 2px solid var(--primary); }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; }
.hamburger span { width:24px; height:2px; background: var(--dark); transition:0.3s; }

.breaking-news { background: var(--primary); color: white; padding: 3rem 0; text-align: center; }
.breaking-label { background: var(--accent); color: var(--dark); padding: 4px 12px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; }
.breaking-news h1 { font-family: 'Merriweather', serif; font-size: 2.2rem; margin: 1rem 0 0.5rem; line-height: 1.3; }
.breaking-news .meta { font-size: 0.9rem; opacity: 0.9; }

.featured-article { background: var(--white); padding: 2rem 0 3rem; border-bottom: 1px solid #eee; }
.featured-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; }
.article-body { max-width: 800px; margin: 0 auto; font-size: 1.1rem; line-height: 1.8; color: #333; }
.article-body p { margin-bottom: 1.5rem; }
.article-body h3 { font-family: 'Merriweather', serif; color: var(--dark); margin: 2rem 0 1rem; font-size: 1.4rem; }

.section { padding: 3rem 0; }
.section-title { font-family: 'Merriweather', serif; font-size:1.8rem; border-left: 4px solid var(--primary); padding-left: 1rem; margin-bottom: 2rem; color: var(--dark); }

.news-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:2rem; }
.news-card { background:var(--white); border-radius:var(--radius); overflow: hidden; box-shadow:var(--shadow); transition:0.3s; }
.news-card:hover { transform:translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.news-card img { width:100%; height:200px; object-fit:cover; }
.news-content { padding: 1.5rem; }
.category { display: inline-block; background: #E3F2FD; color: #1565C0; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; }
.news-content h3 { font-family: 'Merriweather', serif; font-size: 1.1rem; margin-bottom: 0.5rem; line-height: 1.4; }
.news-content p { font-size: 0.9rem; color: var(--gray); }

.news-list { display: flex; flex-direction: column; gap: 1.5rem; }
.news-item { display: grid; grid-template-columns: 250px 1fr; gap: 1.5rem; background: var(--white); padding: 1rem; border-radius: var(--radius); box-shadow: var(--shadow); align-items: center; }
.news-item img { width: 100%; height: 150px; object-fit: cover; border-radius: 4px; }
.news-item h2 { font-family: 'Merriweather', serif; font-size: 1.3rem; margin: 0.5rem 0; }
.news-item .date { font-size: 0.85rem; color: var(--gray); }

.about-content { background: var(--white); padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 900px; margin: 0 auto; }
.about-content h2 { font-family: 'Merriweather', serif; margin-bottom: 1rem; color: var(--primary); }
.values-list { margin-top: 1.5rem; }
.values-list li { margin-bottom: 0.8rem; padding-left: 1.5rem; position: relative; }
.values-list li::before { content: "✓"; color: var(--primary); position: absolute; left: 0; font-weight: bold; }

.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; }
.contact-info, .contact-form { background:var(--white); padding:2rem; border-radius:var(--radius); box-shadow:var(--shadow); }
.contact-info p { margin-bottom: 1rem; }
.contact-form input, .contact-form textarea { width:100%; padding:12px; border:1px solid #ddd; border-radius:6px; font-family:inherit; margin-bottom:1rem; font-size: 1rem; }
.contact-form label { font-weight:500; display:block; margin-bottom:0.4rem; font-size: 0.9rem; }
.btn { display:inline-block; padding:12px 24px; border-radius:6px; font-weight:600; transition:0.3s; border:none; cursor:pointer; font-size: 1rem; }
.btn-primary { background: var(--primary); color:white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-full { width:100%; }
.success-message { background:#d4edda; color:#155724; padding:1rem; border-radius:6px; margin-bottom:1rem; border: 1px solid #c3e6cb; }
.error-message { background:#f8d7da; color:#721c24; padding:1rem; border-radius:6px; margin-bottom:1rem; border: 1px solid #f5c6cb; }

.page-header { background: var(--dark); color:white; padding:80px 0 40px; text-align:center; }
.page-header h1 { font-family:'Merriweather',serif; font-size:2.2rem; }
.legal-box { background:var(--white); padding:2.5rem; border-radius:var(--radius); box-shadow:var(--shadow); max-width:800px; margin:0 auto; line-height: 1.8; }
.legal-box h3 { font-family: 'Merriweather', serif; margin: 1.5rem 0 0.5rem; color: var(--dark); }

.footer { background:#263238; color:#b0bec5; padding:3rem 0 1rem; margin-top:3rem; }
.footer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:2rem; }
.footer h3, .footer h4 { color: white; margin-bottom: 1rem; font-family: 'Merriweather', serif; }
.footer a { color:#b0bec5; }
.footer a:hover { color:var(--accent); }
.footer-bottom { border-top:1px solid #37474f; padding-top:1.5rem; text-align:center; font-size:0.85rem; margin-top: 2rem; }

.skip-link { position:absolute; top:-40px; left:0; background:var(--primary); color:white; padding:8px 16px; z-index: 2000; }
.skip-link:focus { top:0; }
.back-to-top { position: fixed; bottom: 30px; right: 30px; background: var(--primary); color: white; width: 45px; height: 45px; border-radius: 50%; border: none; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 999; }
.back-to-top.show { display: flex; }

@media (max-width:768px) {
    .nav-links { display:none; position:absolute; top:70px; left:0; width:100%; background:var(--white); flex-direction:column; padding:1.5rem; gap:1rem; box-shadow:0 10px 20px rgba(0,0,0,0.1); }
    .nav-links.active { display:flex; }
    .hamburger { display:flex; }
    .breaking-news h1 { font-size: 1.6rem; }
    .news-item { grid-template-columns: 1fr; }
    .news-item img { height: 200px; }
    .contact-grid { grid-template-columns:1fr; }
}