.about-page {
    width: 100%;
    background: #fff;
    padding-top: 38px;

}

.about-container {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;

}

.about-hero-image {
    width: 100%;
    height: 330px;
    border-radius: 8px;
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* WHO WE ARE */
.about-who-section {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    padding: 70px 0 82px;
    align-items: flex-start;
}

.about-who-title h1 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #061735;
}

.about-who-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #334155;
    max-width: 720px;
}

/* PURPOSE */
.about-purpose-section {
    background: #f4f8fc;
    padding: 82px 0 86px;
}

.purpose-heading {
    text-align: center;
    margin-bottom: 34px;
}

.purpose-heading h2,
.values-heading h2 {
    font-size: 34px;
    font-weight: 800;
    color: #061735;
    margin-bottom: 6px;
}

.purpose-heading p,
.values-heading p {
    font-size: 13px;
    color: #334155;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.purpose-card {
    min-height: 205px;
    border-radius: 8px;
    padding: 62px 36px 36px;
    color: #ffffff;
}

.purpose-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.purpose-card p {
    font-size: 13px;
    line-height: 1.55;
    max-width: 480px;
}

.mission-card {
    background: #08c7b4;
}

.vision-card {
    background: #061735;
}

.vision-card h3 {
    color: #08c7b4;
}

/* VALUES */
.about-values-section {
    background: #ffffff;
    padding: 90px 0 96px;
}

.values-heading {
    text-align: center;
    margin-bottom: 34px;
}

.values-grid {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.value-card {
    min-height: 210px;
    background: #eefdfb;
    border-radius: 6px;
    padding: 26px 24px 24px;
}

.value-icon {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: #061735;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-bottom: 68px;
}

.value-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: #061735;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12.5px;
    line-height: 1.55;
    color: #334155;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-hero-image {
        height: 260px;
    }

    .about-who-section {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 55px 0 65px;
    }

    .purpose-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .purpose-card {
        padding: 42px 28px 32px;
    }

    .value-icon {
        margin-bottom: 48px;
    }
}

@media (max-width: 600px) {
    .about-container {
        width: min(100% - 28px, 1120px);
    }

    .about-hero-image {
        height: 220px;
        margin-top: 24px;
    }

    .about-who-title h1,
    .purpose-heading h2,
    .values-heading h2 {
        font-size: 28px;
    }

    .purpose-card {
        min-height: auto;
    }

    .value-card {
        min-height: auto;
    }
}
