:root {
    --primary-navy: #002147;
    --accent-blue: #0056b3;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --bg-grey: #f4f7f9;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
}

.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* Navigation */
header {
    background: var(--primary-navy);
    padding: 15px 0;
    color: white;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-family: 'Montserrat'; font-weight: 700; font-size: 1.4rem; }
.logo span { font-weight: 400; font-size: 0.8rem; color: #a0aec0; margin-left: 5px; }

nav a { color: white; text-decoration: none; margin-left: 20px; font-size: 0.9rem; }
.btn-cta { background: var(--accent-blue); padding: 8px 18px; border-radius: 4px; }

/* Common Typography */
.section-title {
    font-family: 'Montserrat';
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background: var(--accent-blue);
}

/* Featured Section */
.featured-section { padding: 60px 0; background: var(--bg-grey); }

.featured-hero {
    display: flex;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.featured-img { flex: 1; min-height: 350px; background-size: cover; background-position: center; }

.featured-text { flex: 1; padding: 50px; }

.badge {
    background: var(--primary-navy);
    color: white;
    padding: 4px 12px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
}

.featured-text h1 { font-family: 'Montserrat'; margin: 20px 0; font-size: 2.2rem; line-height: 1.2; }

.read-more-btn {
    display: inline-block;
    margin-top: 25px;
    color: var(--accent-blue);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.read-more-btn:hover { border-bottom: 2px solid var(--accent-blue); }

/* Latest Section */
.latest-section { padding: 80px 0; }

.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.latest-card {
    padding: 30px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.latest-card:hover { border-color: var(--accent-blue); background: #fafafa; }

.card-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 10px; }

.latest-card h3 { font-family: 'Montserrat'; font-size: 1.2rem; margin-bottom: 15px; color: var(--primary-navy); }

.latest-card a { color: var(--accent-blue); text-decoration: none; font-size: 0.9rem; font-weight: 600; }

/* Footer */
footer {
    background: var(--primary-navy);
    color: #a0aec0;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .featured-hero { flex-direction: column; }
    .featured-text { padding: 30px; }
    .featured-text h1 { font-size: 1.6rem; }
}