* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
    color: #0f1724;
    background: #fff;
    line-height: 1.6;
}
a { color: #2a6f97; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

header { background: #f8fafc; border-bottom: 1px solid rgba(15,23,36,.08); }
.nav {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
    padding: 14px 0;
}
.brand-address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.brand { font-weight: 700; font-size: 18px; color: #0f1724; text-decoration: none; }
.address {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}
.nav ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.nav a { color: #0f1724; opacity: .9; }
.nav a.active { color: #2a6f97; font-weight: 600; }

.btn {
    display: inline-block; padding: 10px 14px; border-radius: 8px;
    background: #2a6f97; color: #fff; border: 1px solid rgba(15,23,36,.12);
}
.btn.secondary { background: transparent; border-color: rgba(15,23,36,.25); color: #2a6f97; }

.hero {
    background:
        linear-gradient(180deg, rgba(248,250,252,0.4), rgba(248,250,252,0.4)),
        url('assets/hero.jpg') center/cover no-repeat;
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(15,23,36,.08);
}
.hero .subtitle { 
    color: #0f1724; 
    margin: 0 0 20px; 
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(255,255,255,0.7);
}

.section { padding: 40px 0; border-bottom: 1px solid rgba(15,23,36,.08); }
.section h2 { margin: 0 0 8px; }
.section p.lead { color: #64748b; margin-top: 0; }

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.news-item {
    background: #f8fafc;
    border: 1px solid rgba(15,23,36,.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}
.news-item h3 {
    margin: 0 0 6px;
    font-size: 18px;
}
.news-item .date {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
}
.footer { color: #64748b; padding: 24px 0; text-align: center; }
.kicker { color: #2a6f97; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-size: 12px; }
@media (max-width: 900px) {
    .hero .title { font-size: 30px; }
}