/* ========================================================= */
/* ABOUT PAGE MODULE                                         */
/* ========================================================= */

/* About Specific Hero */
.about-hero {
    background: url('/static/images/about-bg.jpg') no-repeat center center / cover !important;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background-attachment: fixed;
}

/* Dark overlay to ensure glass text is readable */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 61, 98, 0.4); 
    z-index: 1;
}

/* Negative margin to lift the cards into the hero section */
.mt-n5-custom {
    margin-top: -80px !important;
    position: relative;
    z-index: 10;
}

/* Compliance Section Image */
.compliance-img-wrapper {
    position: relative;
    display: inline-block;
}

.compliance-img-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--zenzele-orange);
    border-radius: 10px;
    z-index: -1;
}