body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2937;
}

.hero-section {
    min-height: 72vh;
    background: linear-gradient(120deg, rgba(22, 163, 74, 0.92), rgba(5, 150, 105, 0.9)),
        url("https://images.unsplash.com/photo-1526976668912-1a811878dd37?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.hero-card {
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.08);
}

section {
    scroll-margin-top: 78px;
}

/* ── About page ────────────────────────────────────────────────── */
.about-hero {
    min-height: 38vh;
    background: linear-gradient(120deg, rgba(22, 163, 74, 0.92), rgba(5, 150, 105, 0.9)),
        url("https://images.unsplash.com/photo-1526976668912-1a811878dd37?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.timeline-item .timeline-year {
    min-width: 80px;
}

.timeline-item:last-child .timeline-body {
    border-bottom: none !important;
}

/* ── Contact page ─────────────────────────────────────────────── */
.contact-hero {
    min-height: 36vh;
    background: linear-gradient(120deg, rgba(22, 163, 74, 0.92), rgba(5, 150, 105, 0.9)),
        url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

/* ===== Hero carousel (moved from inline view styles) ===== */
.home-slide-bg { min-height: 60vh; background-size: cover; background-position: center; position: relative; }
.home-slide-bg::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.38); }
.home-slide-content { position: relative; z-index: 2; }
.hero-card { max-width: 100%; }
@media (max-width: 991px) { .home-slide-bg { min-height: 100vh; } }