.about-page .about-eyebrow,
.about-page .about-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.about-page .about-eyebrow {
    color: var(--primary-color);
}

.about-page .about-title,
.about-page .about-values-title,
.about-page .mission-card h3 {
    color: var(--primary-dark);
    font-family: 'Outfit', sans-serif;
}

.about-page .mission-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 6, 211, .05);
    border: 1px solid rgba(0, 6, 211, .04);
    padding: 40px 30px;
    height: 100%;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-page .mission-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #0006d3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.about-page .mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 6, 211, .1);
}

.about-page .mission-card:hover::after {
    transform: scaleX(1);
}

.about-page .mission-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #0006d3;
    transition: all .4s ease;
}

.about-page .mission-card:hover .mission-icon-circle {
    background-color: #0006d3;
    color: #fff;
    transform: rotate(10deg);
}

.about-page .mission-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-page .value-grid-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .05);
    padding: 25px;
    height: 100%;
    transition: all .3s ease;
    text-align: center;
}

.about-page .value-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.about-page .value-grid-card h4 {
    font-family: 'Outfit', sans-serif;
}

.about-page .value-grid-card p {
    font-size: .95rem;
    line-height: 1.5;
}

.about-page .value-icon-wrapper {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-page .value-icon-family,
.about-page .value-icon-default { color: #0006d3; }
.about-page .value-icon-honesty { color: #198754; }
.about-page .value-icon-respect { color: #dc3545; }
.about-page .value-icon-commitment { color: #ffc107; }
.about-page .value-icon-persistence { color: #0dcaf0; }
.about-page .value-icon-initiative { color: #6f42c1; }
.about-page .value-icon-flexibility { color: #6c757d; }

.about-page .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    overflow-x: auto;
}

.about-page .intro-text p,
.about-page .intro-text ul,
.about-page .intro-text ol,
.about-page .intro-text blockquote {
    margin-bottom: 1rem;
}

.about-page .intro-text h2,
.about-page .intro-text h3 {
    margin: 1.5rem 0 .75rem;
    color: var(--primary-dark);
}

.about-page .intro-text blockquote {
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.about-page .intro-text img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.about-page .intro-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.about-page .intro-text th,
.about-page .intro-text td {
    border: 1px solid #d8dee8;
    padding: .5rem .75rem;
    vertical-align: top;
}

.about-page .intro-text th {
    background: #f4f7fb;
    font-weight: 600;
}

.about-page .about-main-image {
    min-height: 400px;
    max-height: 480px;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 4 / 5;
}

.about-page .about-gallery-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    min-height: 250px;
}

@media (max-width: 767px) {
    .about-page .display-5 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .about-page .intro-text {
        font-size: 1rem;
        line-height: 1.65;
    }

    .about-page .about-main-image,
    .about-page .about-gallery-image {
        min-height: 0;
    }
}
