/* ========== ABOUT US PAGE STYLES ========== */

/* Active nav link */
.nav-active {
    color: #64b5f6 !important;
    border-bottom: 2px solid #64b5f6;
    padding-bottom: 4px;
}

/* ========== ABOUT HERO ========== */
.about-hero {
    position: relative;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 46, 79, 0.65) 0%,
        rgba(11, 46, 79, 0.78) 50%,
        rgba(11, 46, 79, 0.92) 100%
    );
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 70px;
    width: 100%;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

.about-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    max-width: 700px;
}

.about-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    font-weight: 400;
}

/* ========== ABOUT LABEL (reusable) ========== */
.about-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #0b2e4f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* ========== MISSION SECTION ========== */
.about-mission {
    padding: 90px 20px;
    background-color: #ffffff;
}

.about-mission-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-mission-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0b2e4f;
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-mission-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-mission-image {
    position: relative;
}

.about-mission-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.about-mission-stat {
    position: absolute;
    bottom: -24px;
    left: 30px;
    background: #0b2e4f;
    color: #ffffff;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(11, 46, 79, 0.3);
}

.about-mission-stat-number {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.about-mission-stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== OUR APPROACH ========== */
.about-approach {
    padding: 90px 20px;
    background-color: #f5f5f5;
}

.about-approach-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.about-approach-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0b2e4f;
    margin-bottom: 16px;
}

.about-approach-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-approach-card {
    background: #ffffff;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}

.about-approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11, 46, 79, 0.1);
    border-bottom-color: #0b2e4f;
}

.about-approach-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(11, 46, 79, 0.08);
    color: #0b2e4f;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.about-approach-card:hover .about-approach-icon {
    background: #0b2e4f;
    color: #ffffff;
}

.about-approach-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0b2e4f;
    margin-bottom: 12px;
    line-height: 1.3;
}

.about-approach-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ========== IMPACT STRIP (full-width banner with stats) ========== */
.about-impact-strip {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-impact-overlay {
    background: rgba(11, 46, 79, 0.88);
    padding: 60px 20px;
}

.about-impact-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.about-impact-stat {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 20px 16px;
    position: relative;
}

.about-impact-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.about-impact-number {
    display: block;
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
}

.about-impact-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== VALUES SECTION (alternating rows) ========== */
.about-values {
    padding: 90px 20px;
    background-color: #ffffff;
}

.about-values-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.about-values-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0b2e4f;
    margin-bottom: 12px;
}

.about-value-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 0;
    align-items: stretch;
}

.about-value-row:nth-child(odd) {
    background: #f9f9f9;
}

.about-value-image {
    overflow: hidden;
    min-height: 380px;
}

.about-value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-value-row:hover .about-value-image img {
    transform: scale(1.03);
}

.about-value-content {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-value-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(11, 46, 79, 0.08);
    line-height: 1;
    margin-bottom: 12px;
}

.about-value-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0b2e4f;
    margin-bottom: 16px;
    line-height: 1.25;
}

.about-value-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-value-link {
    font-size: 14px;
    font-weight: 700;
    color: #0b2e4f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-value-link:hover {
    color: #0a2540;
}

/* Reversed row */
.about-value-row-reverse {
    direction: rtl;
}

.about-value-row-reverse > * {
    direction: ltr;
}

/* ========== HISTORY / TIMELINE ========== */
.about-history {
    padding: 90px 20px;
    background: linear-gradient(165deg, #0b2e4f 0%, #0a2540 48%, #071c32 100%);
    color: #ffffff;
}

.about-history-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.about-history-header .about-label {
    color: rgba(255, 255, 255, 0.6);
}

.about-history-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-history-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.about-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.about-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
}

.about-timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.about-timeline-item:last-child {
    padding-bottom: 0;
}

.about-timeline-dot {
    position: absolute;
    left: -34px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #64b5f6;
    border: 3px solid rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.about-timeline-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px 32px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.about-timeline-content:hover {
    background: rgba(255, 255, 255, 0.1);
}

.about-timeline-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #64b5f6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.about-timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.about-timeline-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ========== LEADERSHIP ========== */
.about-leadership {
    padding: 90px 20px;
    background-color: #f5f5f5;
}

.about-leadership-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.about-leadership-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0b2e4f;
    margin-bottom: 12px;
}

.about-leadership-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.about-leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.about-leader-card {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(11, 46, 79, 0.12);
}

.about-leader-image {
    height: 280px;
    overflow: hidden;
}

.about-leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-leader-card:hover .about-leader-image img {
    transform: scale(1.04);
}

.about-leader-info {
    padding: 20px 22px;
    text-align: center;
}

.about-leader-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0b2e4f;
    margin-bottom: 4px;
}

.about-leader-info span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* ========== ACCOUNTABILITY ========== */
.about-accountability {
    padding: 90px 20px;
    background-color: #ffffff;
}

.about-accountability-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-accountability-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0b2e4f;
    margin-bottom: 16px;
    line-height: 1.25;
}

.about-accountability-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-accountability-metrics {
    display: flex;
    gap: 28px;
    margin-bottom: 28px;
}

.about-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-metric-number {
    font-size: 36px;
    font-weight: 900;
    color: #0b2e4f;
    line-height: 1;
}

.about-metric-label {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.btn-about-report {
    display: inline-block;
    background: transparent;
    color: #0b2e4f;
    padding: 14px 28px;
    border: 2px solid #0b2e4f;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.btn-about-report:hover {
    background: #0b2e4f;
    color: #ffffff;
}

/* Donut chart */
.about-accountability-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about-donut-chart {
    position: relative;
    width: 220px;
    height: 220px;
}

.donut-svg {
    width: 100%;
    height: 100%;
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-center span {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #0b2e4f;
    line-height: 1;
}

.donut-center small {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.donut-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========== CTA BANNER ========== */
.about-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-cta-overlay {
    background: rgba(11, 46, 79, 0.88);
    padding: 80px 20px;
}

.about-cta-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-about-primary {
    display: inline-block;
    background: #0b2e4f;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-about-primary:hover {
    background: #0a2540;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(11, 46, 79, 0.4);
    transform: translateY(-2px);
}

.btn-about-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-about-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    color: #ffffff;
}

/* ========== LEADERSHIP SUBSECTIONS ========== */
.about-leadership-subsection {
    margin-bottom: 50px;
}

.about-leadership-subsection:last-child {
    margin-bottom: 0;
}

.about-leadership-sub-title {
    font-size: 22px;
    font-weight: 700;
    color: #0b2e4f;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(11, 46, 79, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-leadership-sub-title i {
    color: #d32f2f;
    font-size: 20px;
}

/* ========== RESOURCES SECTION ========== */
.about-resources {
    padding: 90px 20px;
    background-color: #ffffff;
}

.about-resources-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.about-resources-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0b2e4f;
    margin-bottom: 16px;
}

.about-resources-header p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.about-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-resource-card {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 36px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(11, 46, 79, 0.1);
}

.about-resource-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(211, 47, 47, 0.08);
    color: #d32f2f;
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.about-resource-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0b2e4f;
    margin-bottom: 12px;
}

.about-resource-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-resource-list li {
    margin-bottom: 10px;
}

.about-resource-list li:last-child {
    margin-bottom: 0;
}

.about-resource-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #0b2e4f;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background: rgba(11, 46, 79, 0.04);
}

.about-resource-list li a:hover {
    background: rgba(211, 47, 47, 0.08);
    color: #d32f2f;
}

.about-resource-list li a i {
    color: #d32f2f;
    font-size: 16px;
}

/* ========== ABOUT PAGE RESPONSIVE ========== */

/* Tablet */
@media (max-width: 1024px) {
    .about-hero {
        min-height: 420px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .about-mission-inner {
        gap: 40px;
    }

    .about-mission-text h2 {
        font-size: 28px;
    }

    .about-mission-image img {
        height: 360px;
    }

    .about-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-impact-number {
        font-size: 36px;
    }

    .about-value-content {
        padding: 36px 40px;
    }

    .about-value-content h3 {
        font-size: 22px;
    }

    .about-leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-leader-image {
        height: 240px;
    }

    .about-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-accountability-inner {
        gap: 40px;
    }

    .about-accountability-text h2 {
        font-size: 28px;
    }

    .about-metric-number {
        font-size: 28px;
    }

    .about-cta-content h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        min-height: 380px;
    }

    .about-hero-content {
        padding: 0 15px 50px;
    }

    .about-hero-title {
        font-size: 30px;
    }

    .about-hero-subtitle {
        font-size: 15px;
    }

    /* Mission */
    .about-mission {
        padding: 60px 15px;
    }

    .about-mission-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-mission-text h2 {
        font-size: 26px;
    }

    .about-mission-image img {
        height: 300px;
    }

    .about-mission-stat {
        bottom: -20px;
        left: 20px;
        padding: 16px 22px;
    }

    .about-mission-stat-number {
        font-size: 26px;
    }

    /* Approach */
    .about-approach {
        padding: 60px 15px;
    }

    .about-approach-header h2 {
        font-size: 26px;
    }

    .about-approach-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-approach-card {
        padding: 28px 24px;
    }

    /* Impact strip */
    .about-impact-overlay {
        padding: 40px 15px;
    }

    .about-impact-stats {
        flex-direction: column;
        gap: 0;
    }

    .about-impact-stat {
        padding: 16px;
        min-width: 100%;
    }

    .about-impact-stat:not(:last-child)::after {
        right: 20%;
        top: auto;
        bottom: 0;
        height: 1px;
        width: 60%;
    }

    .about-impact-number {
        font-size: 34px;
    }

    /* Values */
    .about-values {
        padding: 60px 15px;
    }

    .about-values-header h2 {
        font-size: 26px;
    }

    .about-value-row,
    .about-value-row-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .about-value-image {
        min-height: 240px;
    }

    .about-value-content {
        padding: 30px 24px;
    }

    .about-value-content h3 {
        font-size: 22px;
    }

    .about-value-number {
        font-size: 36px;
    }

    /* History / Timeline */
    .about-history {
        padding: 60px 15px;
    }

    .about-history-header h2 {
        font-size: 26px;
    }

    .about-timeline {
        padding-left: 32px;
    }

    .about-timeline-content {
        padding: 22px 24px;
    }

    .about-timeline-content h4 {
        font-size: 18px;
    }

    /* Leadership */
    .about-leadership {
        padding: 60px 15px;
    }

    .about-leadership-header h2 {
        font-size: 26px;
    }

    .about-leadership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-leader-image {
        height: 260px;
    }

    .about-leadership-sub-title {
        font-size: 18px;
    }

    /* Resources */
    .about-resources {
        padding: 60px 15px;
    }

    .about-resources-header h2 {
        font-size: 26px;
    }

    .about-resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Accountability */
    .about-accountability {
        padding: 60px 15px;
    }

    .about-accountability-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-accountability-text h2 {
        font-size: 26px;
    }

    .about-accountability-metrics {
        flex-wrap: wrap;
        gap: 20px;
    }

    .about-metric-number {
        font-size: 28px;
    }

    .about-donut-chart {
        width: 180px;
        height: 180px;
    }

    .donut-center span {
        font-size: 28px;
    }

    /* CTA */
    .about-cta-overlay {
        padding: 60px 15px;
    }

    .about-cta-content h2 {
        font-size: 26px;
    }

    .about-cta-content p {
        font-size: 14px;
    }

    .btn-about-primary,
    .btn-about-secondary {
        padding: 14px 28px;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-hero {
        min-height: 320px;
    }

    .about-hero-content {
        padding: 0 10px 40px;
    }

    .about-hero-title {
        font-size: 24px;
    }

    .about-hero-subtitle {
        font-size: 13px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .about-mission {
        padding: 40px 10px;
    }

    .about-mission-text h2 {
        font-size: 22px;
    }

    .about-mission-image img {
        height: 240px;
    }

    .about-mission-stat {
        left: 12px;
        padding: 14px 18px;
    }

    .about-mission-stat-number {
        font-size: 22px;
    }

    .about-mission-stat-label {
        font-size: 11px;
    }

    .about-approach {
        padding: 40px 10px;
    }

    .about-approach-header h2 {
        font-size: 22px;
    }

    .about-approach-card {
        padding: 24px 20px;
    }

    .about-approach-card h3 {
        font-size: 16px;
    }

    .about-approach-card p {
        font-size: 13px;
    }

    .about-impact-number {
        font-size: 28px;
    }

    .about-impact-label {
        font-size: 11px;
    }

    .about-values {
        padding: 40px 10px;
    }

    .about-values-header h2 {
        font-size: 22px;
    }

    .about-value-image {
        min-height: 200px;
    }

    .about-value-content {
        padding: 24px 18px;
    }

    .about-value-content h3 {
        font-size: 19px;
    }

    .about-value-content p {
        font-size: 13px;
    }

    .about-history {
        padding: 40px 10px;
    }

    .about-history-header h2 {
        font-size: 22px;
    }

    .about-timeline {
        padding-left: 26px;
    }

    .about-timeline-dot {
        left: -20px;
        width: 12px;
        height: 12px;
    }

    .about-timeline-line {
        left: 8px;
    }

    .about-timeline-content {
        padding: 18px 18px;
    }

    .about-timeline-content h4 {
        font-size: 16px;
    }

    .about-timeline-content p {
        font-size: 13px;
    }

    .about-leadership {
        padding: 40px 10px;
    }

    .about-leadership-header h2 {
        font-size: 22px;
    }

    .about-leader-image {
        height: 220px;
    }

    .about-leader-info {
        padding: 16px 18px;
    }

    .about-leader-info h4 {
        font-size: 15px;
    }

    .about-accountability {
        padding: 40px 10px;
    }

    .about-accountability-text h2 {
        font-size: 22px;
    }

    .about-accountability-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .about-metric-number {
        font-size: 24px;
    }

    .about-donut-chart {
        width: 160px;
        height: 160px;
    }

    .donut-center span {
        font-size: 24px;
    }

    .about-cta-overlay {
        padding: 40px 10px;
    }

    .about-cta-content h2 {
        font-size: 22px;
    }

    .about-cta-content p {
        font-size: 13px;
    }

    .about-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-about-primary,
    .btn-about-secondary {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
}
