/* =========================================================
   OLI TRAINING ACADEMY
   ABOUT US PAGE
   Page-specific stylesheet
   Orange / Blue / Black / White
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

.about-page {
    --orange: #f5a000;
    --orange-dark: #d88900;
    --blue: #0757a0;
    --blue-dark: #043d73;
    --black: #111111;
    --dark: #171717;
    --white: #ffffff;
    --light: #f7f9fc;
    --soft: #eef3f8;
    --text: #333333;
    --muted: #6d7480;
    --border: #e3e7ec;

    margin: 0;
    padding: 0;
    background: var(--white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.about-page *,
.about-page *::before,
.about-page *::after {
    box-sizing: border-box;
}

.about-page a {
    text-decoration: none;
    color: inherit;
}

.about-page img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   HEADER
========================================================= */

.about-page .header {
    width: 100%;
    min-height: 86px;
    padding: 12px 5%;
    background: var(--white);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    border-bottom: 1px solid #e8e8e8;

    position: relative;
    z-index: 100;
}


/* =========================================================
   LOGO AREA
========================================================= */

.about-page .logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.about-page .logo-area img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 8px;
}

.about-page .logo-text {
    line-height: 1.2;
}

.about-page .logo-text h2 {
    margin: 0;
    color: var(--black);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.about-page .logo-text p {
    margin: 5px 0 0;
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   NAVIGATION
========================================================= */

.about-page .navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.about-page .navbar a {
    position: relative;

    color: #333;
    font-size: 14px;
    font-weight: 600;

    padding: 10px 0;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.about-page .navbar a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 2px;

    width: 0;
    height: 3px;

    background: var(--orange);
    border-radius: 20px;

    transition: width 0.25s ease;
}

.about-page .navbar a:hover {
    color: var(--blue);
}

.about-page .navbar a:hover::after,
.about-page .navbar a.active::after {
    width: 100%;
}

.about-page .navbar a.active {
    color: var(--blue);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.about-page .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.about-page .search-button {
    width: 40px;
    height: 40px;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--white);
    color: var(--blue);

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.25s ease;
}

.about-page .search-button:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.about-page .apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 20px;

    background: var(--orange);
    color: var(--black);

    border-radius: 5px;

    font-size: 13px;
    font-weight: 800;

    transition: all 0.25s ease;
}

.about-page .apply-button:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}


/* =========================================================
   ABOUT HERO
========================================================= */

.about-page .about-hero {
    min-height: 420px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #061f38 0%,
            #063f70 48%,
            #0757a0 100%
        );
}

.about-page .about-hero::before {
    content: "";

    position: absolute;
    top: -120px;
    right: -100px;

    width: 380px;
    height: 380px;

    border: 70px solid rgba(245, 160, 0, 0.12);
    border-radius: 50%;
}

.about-page .about-hero::after {
    content: "";

    position: absolute;
    bottom: -160px;
    left: -100px;

    width: 400px;
    height: 400px;

    border: 80px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.about-page .about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.25),
            transparent 60%
        );
}

.about-page .about-hero-content {
    position: relative;
    z-index: 2;

    width: min(900px, 90%);

    padding: 70px 20px;
}

.about-page .about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.about-page .about-kicker i {
    font-size: 15px;
}

.about-page .about-hero h1 {
    margin: 18px 0 15px;

    color: var(--white);

    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 800;
}

.about-page .about-hero h1 strong {
    display: block;
    color: var(--orange);
}

.about-page .about-hero p {
    max-width: 680px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.88);

    font-size: 16px;
}

.about-page .about-breadcrumb {
    margin-top: 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
}

.about-page .about-breadcrumb a {
    color: var(--orange);
    font-weight: 700;
}

.about-page .about-breadcrumb i {
    font-size: 9px;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.about-page .about-introduction {
    padding: 90px 5%;
    background: var(--white);
}

.about-page .about-intro-container {
    width: min(1180px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;

    align-items: center;
}


/* =========================================================
   INTRO IMAGE
========================================================= */

.about-page .about-intro-image {
    position: relative;
    padding: 15px 15px 35px 0;
}

.about-page .image-frame {
    position: relative;
    overflow: hidden;

    border-radius: 12px;

    background: var(--soft);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.about-page .image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    border: 5px solid rgba(245, 160, 0, 0.12);

    pointer-events: none;
}

.about-page .image-frame img {
    width: 100%;
    height: 430px;

    object-fit: cover;
}

.about-page .experience-badge {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 145px;
    min-height: 105px;

    padding: 17px;

    background: var(--orange);
    color: var(--black);

    border-radius: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about-page .experience-badge strong {
    font-size: 30px;
    line-height: 1;
}

.about-page .experience-badge span {
    margin-top: 6px;

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.about-page .about-section-label {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.about-page .about-intro-content h2 {
    margin: 0 0 20px;

    color: var(--black);

    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.15;
}

.about-page .about-intro-content h2 span {
    display: block;
    color: var(--blue);
}

.about-page .about-intro-content p {
    margin: 0 0 16px;

    color: var(--muted);

    font-size: 15px;
}

.about-page .about-button {
    margin-top: 12px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 20px;

    background: var(--blue);
    color: var(--white);

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.25s ease;
}

.about-page .about-button:hover {
    background: var(--orange);
    color: var(--black);
    transform: translateY(-2px);
}


/* =========================================================
   MISSION & VISION
========================================================= */

.about-page .mission-vision {
    padding: 75px 5%;

    background:
        linear-gradient(
            135deg,
            #f4f7fa,
            #ffffff
        );
}

.about-page .mission-vision-container {
    width: min(1180px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.about-page .mission-card,
.about-page .vision-card {
    padding: 35px;

    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 22px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-page .mission-card:hover,
.about-page .vision-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.about-page .mission-icon,
.about-page .vision-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 23px;
}

.about-page .mission-icon {
    background: rgba(245, 160, 0, 0.14);
    color: var(--orange-dark);
}

.about-page .vision-icon {
    background: rgba(7, 87, 160, 0.11);
    color: var(--blue);
}

.about-page .mission-card span,
.about-page .vision-card span {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.about-page .mission-card h2,
.about-page .vision-card h2 {
    margin: 7px 0 10px;

    color: var(--black);

    font-size: 21px;
    line-height: 1.25;
}

.about-page .mission-card p,
.about-page .vision-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   CORE VALUES
========================================================= */

.about-page .core-values {
    padding: 90px 5%;
    background: var(--white);
}

.about-page .values-header {
    width: min(700px, 100%);
    margin: 0 auto 45px;

    text-align: center;
}

.about-page .values-header > span {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.about-page .values-header h2 {
    margin: 10px 0;

    color: var(--black);

    font-size: clamp(30px, 4vw, 42px);
}

.about-page .values-header h2 strong {
    color: var(--orange-dark);
}

.about-page .values-header p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}

.about-page .values-grid {
    width: min(1180px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-page .value-card {
    position: relative;

    min-height: 260px;

    padding: 30px 25px;

    background: var(--light);

    border: 1px solid var(--border);
    border-radius: 10px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.about-page .value-card:hover {
    transform: translateY(-6px);

    border-color: rgba(7, 87, 160, 0.25);

    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.about-page .value-number {
    position: absolute;
    top: 16px;
    right: 18px;

    color: rgba(7, 87, 160, 0.12);

    font-size: 38px;
    font-weight: 900;
}

.about-page .value-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--blue);
    color: var(--white);

    border-radius: 9px;

    font-size: 20px;
}

.about-page .value-card h3 {
    margin: 0 0 9px;

    color: var(--black);

    font-size: 19px;
}

.about-page .value-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   TRAINING AREAS
========================================================= */

.about-page .training-areas {
    padding: 90px 5%;

    background: var(--soft);
}

.about-page .training-header {
    width: min(700px, 100%);
    margin: 0 auto 45px;

    text-align: center;
}

.about-page .training-header > span {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.about-page .training-header h2 {
    margin: 10px 0;

    color: var(--black);

    font-size: clamp(30px, 4vw, 42px);
}

.about-page .training-header h2 strong {
    color: var(--orange-dark);
}

.about-page .training-header p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}

.about-page .training-grid {
    width: min(1180px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-page .training-card {
    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 10px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-page .training-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.about-page .training-card > i {
    width: 50px;
    height: 50px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(245, 160, 0, 0.14);
    color: var(--orange-dark);

    border-radius: 9px;

    font-size: 20px;
}

.about-page .training-card h3 {
    margin: 0 0 8px;

    color: var(--black);

    font-size: 17px;
}

.about-page .training-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   WHY OLI
========================================================= */

.about-page .why-oli {
    padding: 90px 5%;

    background: var(--white);
}

.about-page .why-oli-container {
    width: min(1180px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 55px;

    align-items: center;
}

.about-page .why-oli-content > span {
    color: var(--blue);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.7px;
}

.about-page .why-oli-content h2 {
    margin: 10px 0 15px;

    color: var(--black);

    font-size: clamp(31px, 4vw, 44px);
    line-height: 1.15;
}

.about-page .why-oli-content h2 strong {
    color: var(--orange-dark);
}

.about-page .why-oli-content > p {
    max-width: 650px;

    margin: 0 0 30px;

    color: var(--muted);

    font-size: 15px;
}

.about-page .why-list {
    display: grid;
    gap: 20px;
}

.about-page .why-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-page .why-item > i {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 2px;

    background: var(--blue);
    color: var(--white);

    border-radius: 50%;

    font-size: 11px;
}

.about-page .why-item h3 {
    margin: 0 0 3px;

    color: var(--black);

    font-size: 16px;
}

.about-page .why-item p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   WHY OLI SIDE PANEL
========================================================= */

.about-page .why-oli-panel {
    padding: 45px 35px;

    background:
        linear-gradient(
            145deg,
            var(--blue-dark),
            var(--blue)
        );

    color: var(--white);

    border-radius: 12px;

    text-align: center;

    box-shadow: 0 20px 45px rgba(4, 61, 115, 0.2);
}

.about-page .why-oli-panel > i {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);
    color: var(--black);

    border-radius: 50%;

    font-size: 25px;
}

.about-page .why-oli-panel h3 {
    margin: 0 0 12px;

    font-size: 21px;
    line-height: 1.3;
}

.about-page .why-oli-panel p {
    margin: 0 0 25px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
}

.about-page .why-oli-panel a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 17px;

    background: var(--orange);
    color: var(--black);

    border-radius: 5px;

    font-size: 12px;
    font-weight: 800;

    transition: all 0.25s ease;
}

.about-page .why-oli-panel a:hover {
    background: var(--white);
}


/* =========================================================
   CALL TO ACTION
========================================================= */

.about-page .about-cta {
    padding: 80px 5%;

    background:
        linear-gradient(
            135deg,
            #111111,
            #222222
        );

    text-align: center;

    position: relative;
    overflow: hidden;
}

.about-page .about-cta::before {
    content: "";

    position: absolute;
    width: 320px;
    height: 320px;

    top: -180px;
    left: -100px;

    border: 70px solid rgba(245, 160, 0, 0.09);
    border-radius: 50%;
}

.about-page .about-cta > div {
    position: relative;
    z-index: 2;

    width: min(760px, 100%);
    margin: auto;
}

.about-page .about-cta span {
    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.about-page .about-cta h2 {
    margin: 10px 0;

    color: var(--white);

    font-size: clamp(29px, 4vw, 43px);
    line-height: 1.15;
}

.about-page .about-cta p {
    margin: 0 auto 25px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
}

.about-page .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.about-page .cta-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 13px 21px;

    background: var(--orange);
    color: var(--black);

    border-radius: 5px;

    font-size: 13px;
    font-weight: 800;

    transition: all 0.25s ease;
}

.about-page .cta-buttons a:hover {
    background: var(--white);
}

.about-page .cta-buttons a.cta-outline {
    background: transparent;
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.35);
}

.about-page .cta-buttons a.cta-outline:hover {
    background: var(--blue);
    border-color: var(--blue);
}


/* =========================================================
   FOOTER
========================================================= */

.about-page .footer {
    padding: 35px 5%;

    background: #0c0c0c;
    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.about-page .footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-page .footer-brand img {
    width: 52px;
    height: 52px;

    object-fit: contain;

    border-radius: 6px;
}

.about-page .footer-brand h3 {
    margin: 0;

    font-size: 14px;
    font-weight: 800;
}

.about-page .footer-brand p {
    margin: 3px 0 0;

    color: var(--orange);

    font-size: 10px;
}

.about-page .footer-links {
    display: flex;
    align-items: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
}

.about-page .footer-links a:hover {
    color: var(--orange);
}

.about-page .footer-links span {
    color: rgba(255, 255, 255, 0.25);
}

.about-page .social-icons {
    display: flex;
    gap: 8px;
}

.about-page .social-icons a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);
    color: var(--white);

    border-radius: 50%;

    font-size: 13px;

    transition: all 0.25s ease;
}

.about-page .social-icons a:hover {
    background: var(--orange);
    color: var(--black);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.about-page .copyright {
    padding: 13px 5%;

    background: #070707;
    color: rgba(255, 255, 255, 0.5);

    text-align: center;

    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .about-page .header {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-page .logo-area {
        margin-right: auto;
    }

    .about-page .header-actions {
        margin-left: auto;
    }

    .about-page .navbar {
        width: 100%;
        order: 3;

        padding-top: 5px;

        gap: 20px;

        overflow-x: auto;
        justify-content: center;
    }

    .about-page .about-intro-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .about-page .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .why-oli-container {
        grid-template-columns: 1fr;
    }

    .about-page .why-oli-panel {
        max-width: 550px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-page .header {
        padding: 12px 20px;
        gap: 12px;
    }

    .about-page .logo-area img {
        width: 52px;
        height: 52px;
    }

    .about-page .logo-text h2 {
        font-size: 14px;
    }

    .about-page .logo-text p {
        font-size: 9px;
    }

    .about-page .header-actions {
        gap: 7px;
    }

    .about-page .search-button {
        width: 36px;
        height: 36px;
    }

    .about-page .apply-button {
        min-height: 36px;
        padding: 0 12px;

        font-size: 11px;
    }

    .about-page .navbar {
        justify-content: flex-start;
        gap: 18px;

        padding-bottom: 4px;
    }

    .about-page .navbar a {
        flex-shrink: 0;
        font-size: 12px;
    }


    /* HERO */

    .about-page .about-hero {
        min-height: 390px;
    }

    .about-page .about-hero-content {
        padding: 55px 20px;
    }

    .about-page .about-hero h1 {
        font-size: 39px;
    }

    .about-page .about-hero p {
        font-size: 14px;
    }


    /* INTRO */

    .about-page .about-introduction {
        padding: 65px 20px;
    }

    .about-page .about-intro-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-page .about-intro-image {
        max-width: 520px;
        width: 100%;
        margin: auto;
    }

    .about-page .image-frame img {
        height: 350px;
    }

    .about-page .about-intro-content h2 {
        font-size: 32px;
    }


    /* MISSION / VISION */

    .about-page .mission-vision {
        padding: 60px 20px;
    }

    .about-page .mission-vision-container {
        grid-template-columns: 1fr;
    }

    .about-page .mission-card,
    .about-page .vision-card {
        padding: 25px;

        grid-template-columns: 55px 1fr;
        gap: 15px;
    }


    /* VALUES */

    .about-page .core-values {
        padding: 65px 20px;
    }

    .about-page .values-grid {
        grid-template-columns: 1fr;
    }


    /* TRAINING */

    .about-page .training-areas {
        padding: 65px 20px;
    }

    .about-page .training-grid {
        grid-template-columns: 1fr;
    }


    /* WHY OLI */

    .about-page .why-oli {
        padding: 65px 20px;
    }

    .about-page .why-oli-panel {
        padding: 35px 25px;
    }


    /* CTA */

    .about-page .about-cta {
        padding: 65px 20px;
    }


    /* FOOTER */

    .about-page .footer {
        padding: 35px 20px;

        flex-direction: column;

        text-align: center;
    }

    .about-page .footer-brand {
        flex-direction: column;
    }

    .about-page .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .about-page .logo-area {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .about-page .header-actions {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .about-page .navbar {
        width: 100%;
    }

    .about-page .about-hero h1 {
        font-size: 34px;
    }

    .about-page .about-hero h1 strong {
        font-size: 30px;
    }

    .about-page .image-frame img {
        height: 300px;
    }

    .about-page .experience-badge {
        right: 5px;
        width: 125px;
        min-height: 90px;
    }

    .about-page .experience-badge strong {
        font-size: 25px;
    }

    .about-page .mission-card,
    .about-page .vision-card {
        grid-template-columns: 1fr;
    }

    .about-page .cta-buttons {
        flex-direction: column;
    }

    .about-page .cta-buttons a {
        width: 100%;
        justify-content: center;
    }

}