/* ==========================================
   ABOUT PAGE
========================================== */

.about-page {
    background: #f5f5f5;
    min-height: 70vh;
    padding: 60px 0 80px;
}


/* ==========================================
   INTRO
========================================== */

.about-intro {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;

    background: #fff;

    padding: 60px;

    border: 1px solid #e5e5e5;
    border-radius: 8px;

    margin-bottom: 35px;
}

.about-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #0D5CB6;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 15px;
}

.about-intro__content h1 {
    margin: 0 0 20px;

    color: #222;

    font-size: 42px;
    line-height: 1.2;
}

.about-intro__content p {
    margin: 0 0 15px;

    color: #666;

    font-size: 16px;
    line-height: 1.8;
}

.about-intro__content p:last-child {
    margin-bottom: 0;
}


/* ==========================================
   INTRO VISUAL
========================================== */

.about-intro__visual {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 280px;

    background: linear-gradient(
        135deg,
        #0B57B7 0%,
        #08418D 55%,
        #062F69 100%
    );

    border-radius: 8px;
}

.about-intro__icon {
    width: 150px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;

    color: #fff;

    font-size: 65px;
}


/* ==========================================
   MISSION
========================================== */

.about-section {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 30px;
    align-items: start;

    background: #fff;

    padding: 45px;

    border: 1px solid #e5e5e5;
    border-radius: 8px;

    margin-bottom: 35px;
}

.about-section__icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5b51d;

    border-radius: 50%;

    color: #222;

    font-size: 28px;
}

.about-section__eyebrow {
    display: block;

    margin-bottom: 10px;

    color: #0D5CB6;

    font-size: 12px;
    font-weight: 700;
}

.about-section__content h2 {
    margin: 0 0 15px;

    color: #222;

    font-size: 28px;
}

.about-section__content p {
    margin: 0 0 12px;

    color: #666;

    font-size: 15px;
    line-height: 1.7;
}

.about-section__content p:last-child {
    margin-bottom: 0;
}


/* ==========================================
   WHY CHOOSE US
========================================== */

.about-why {
    margin-bottom: 35px;
}

.about-why__header {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 35px;
}

.about-why__header h2 {
    margin: 0 0 12px;

    color: #222;

    font-size: 32px;
}

.about-why__header p {
    margin: 0;

    color: #666;

    font-size: 15px;
    line-height: 1.7;
}


/* ==========================================
   FEATURES
========================================== */

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-feature {
    background: #fff;

    padding: 30px 25px;

    text-align: center;

    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.about-feature__icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    background: #eef5fc;

    border-radius: 50%;

    color: #0D5CB6;

    font-size: 24px;
}

.about-feature h3 {
    margin: 0 0 10px;

    color: #222;

    font-size: 17px;
}

.about-feature p {
    margin: 0;

    color: #666;

    font-size: 13px;
    line-height: 1.6;
}


/* ==========================================
   CTA
========================================== */

.about-cta {
    background: linear-gradient(
        135deg,
        #0B57B7 0%,
        #08418D 55%,
        #062F69 100%
    );

    padding: 50px;

    border-radius: 8px;

    text-align: center;
}

.about-cta__content {
    max-width: 650px;
    margin: 0 auto;
}

.about-cta h2 {
    margin: 0 0 12px;

    color: #fff;

    font-size: 30px;
}

.about-cta p {
    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 15px;
    line-height: 1.7;
}

.about-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 22px;

    background: #f5b51d;

    color: #222;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.about-cta__button:hover {
    opacity: 0.9;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1000px) {

    .about-intro {
        grid-template-columns: 1fr 320px;
        gap: 35px;

        padding: 40px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .about-page {
        padding: 40px 0 60px;
    }

    .about-intro {
        grid-template-columns: 1fr;

        padding: 30px;

        gap: 30px;
    }

    .about-intro__content h1 {
        font-size: 32px;
    }

    .about-intro__visual {
        min-height: 220px;
    }

    .about-section {
        grid-template-columns: 1fr;

        padding: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-cta {
        padding: 35px 25px;
    }

}