/* Explain: Layout styles including hero section overlay and spacing. - */
.hero-classic {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-classic::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(15, 23, 42, 0.85); /* Deep corporate navy overlay */
    z-index: 1;
}

.hero-classic > * {
    position: relative;
    z-index: 2;
}