/* 
 * ABOUT PAGE STYLES
 */

.about-page-wrapper {
    background-color: #042E3D;
    /* Theme dark navy base */
    color: #fff;
    padding-bottom: 80px;
}

.bg-dark {
    background-color: #164658;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.section-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 700;
    color: #fff;
}

.section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5d8;
    margin-bottom: 20px;
}

.btn-orange {
    background-color: #FF5E1E;
    /* Primary orange */
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s;
}

.btn-orange:hover {
    background-color: #e5531a;
    color: #fff;
}

/* SECTION 1: HERO */
.about-hero {
    background-color: #042E3D;
    background-size: cover;
    background-position: center 20%;
    /* Shift image slightly down for better framing */
    padding: 220px 20px 180px;
    /* Taller padding, accommodates absolute header */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.about-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    /* As seen over photo */
}

/* COMMON GRID LAYOUT (used in sections 2, 3, 4) */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.about-grid.reverse-mobile {
    /* Optional class to flip image to top on mobile for Section 3 */
}

.about-text-col,
.about-image-col {
    width: 100%;
}

.about-text-col.center-vertical {
    align-self: center;
}

.right-align {
    text-align: right;
    /* Helps position certain images to the right boundary */
}

.rounded-img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.mission-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #fff;
}

/* SECTION PADDINGS */
.about-our-why {
    padding: 80px 0 40px 0;
}

.about-accessible {
    padding: 40px 0 80px 0;
}

.about-choosing {
    padding: 80px 0 40px;
}


/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid.reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
        /* Put text above image on small screens if desired */
    }

    .about-hero .hero-title {
        font-size: 2.2rem;
    }
}