/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */

/* 1. Hero Banner */
.about-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../assets/ss_2660438789.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.92) 0%, rgba(var(--primary-rgb), 0.75) 50%, rgba(var(--primary-rgb), 0.6) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.about-hero-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


#page-header-container,
#about-vision,
#about-whoweare,
#about-whatwedo,
#about-howwework,
#about-different,
#about-leaders,
#about-milestones,
#partners,
#about-contact {
    scroll-margin-top: calc(var(--nav-height, 69px) + 72px);
}

/* 2. Vision & Mission */
.about-vision {
    padding: 100px 0;
    background: var(--bg-main);
}

/* Vision layout v2: video centered on top, cards row below */
.vision-layout-v2 {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.vision-layout-v2 .vision-video {
    width: 100%;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vision-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.vision-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--accent-color);
}

.vision-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--secondary-rgb), 0.1), rgba(var(--accent-rgb), 0.06));
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.vision-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.vision-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* 3. Who We Are */
.about-whoweare {
    padding: 100px 0;
    background: var(--surface-color);
    position: relative;
}

.about-whoweare::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.whoweare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.whoweare-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whoweare-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.whoweare-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.whoweare-card:hover::after {
    transform: scaleX(1);
}

.whoweare-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(var(--secondary-rgb), 0.08);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.whoweare-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.whoweare-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* 4. What We Do */
.about-whatwedo {
    padding: 100px 0;
    background: var(--bg-main);
}

.whatwedo-header {
    text-align: center;
    margin-bottom: 48px;
}

.whatwedo-header .section-title {
    margin-bottom: 16px;
}

.whatwedo-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.whatwedo-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.whatwedo-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.whatwedo-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.whatwedo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary-color);
}

.whatwedo-card:hover::after {
    transform: scaleX(1);
}

.whatwedo-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(var(--secondary-rgb), 0.08);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.whatwedo-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    min-height: 2.4em;
}

.whatwedo-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.whatwedo-card-body {
    min-height: 0;
}

.whatwedo-card-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 24px;
}

.whatwedo-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: gap 0.3s ease;
    gap: 2px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.whatwedo-cta:hover {
    gap: 6px;
}

.whatwedo-cta-group {
    gap: 10px;
}

.whatwedo-cta-group .whatwedo-cta {
    width: max-content;
}

/* 5. How We Work */
.about-howwework {
    padding: 100px 0;
    background: var(--surface-color);
    position: relative;
}

.about-howwework::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.howwework-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: howwework;
}

.howwework-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.howwework-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(var(--secondary-rgb), 0.3);
}

.howwework-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    line-height: 1;
}

.howwework-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.howwework-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* 6. What Makes Us Different */
.about-different {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #122040 50%, var(--primary-color) 100%);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.about-different .section-header {
    border-bottom-color: var(--accent-color);
}

.about-partners .section-header {
    border-bottom: none;
    margin-bottom: 8px;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.different-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(8px);
}

.different-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--accent-rgb), 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.different-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.different-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 12px;
}

.different-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
}

.different-cta {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 8px;
}

/* 7. Leaders */
.about-leaders {
    padding: 100px 0;
    background: var(--bg-main);
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.leader-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.leader-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(var(--secondary-rgb), 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover .leader-avatar {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.3);
}

.leader-avatar span {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.leader-card h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.leader-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* 8. Milestones / Timeline — Premium Horizontal */
.about-milestones {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.about-milestones::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-milestones .section-title {
    color: #fff;
}

/* Timeline container */
.ms-timeline {
    position: relative;
    margin-top: 48px;
}

/* Horizontal track */
.ms-timeline-track {
    position: absolute;
    top: 11px;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 1;
}

.ms-timeline-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
}

.ms-timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(var(--secondary-rgb), 0.4);
}

.ms-timeline.in-view .ms-timeline-progress {
    width: 100%;
}

/* Items row */
.ms-timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* Single milestone item */
.ms-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

/* Dot + ring */
.ms-dot-wrap {
    position: relative;
    width: 24px;
    height: 24px;
    margin-bottom: 20px;
}

.ms-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 0 3px var(--primary-color), 0 0 0 5px rgba(var(--secondary-rgb), 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ms-dot-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--secondary-rgb), 0.3);
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: ms-ring-pulse 2.5s ease-in-out infinite;
    opacity: 0;
}

.ms-item:hover .ms-dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 0 0 3px var(--primary-color), 0 0 0 6px rgba(var(--secondary-rgb), 0.5), 0 0 20px rgba(var(--secondary-rgb), 0.3);
}

.ms-item:hover .ms-dot-ring {
    opacity: 1;
}

@keyframes ms-ring-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0.5;
    }
}

/* Year label */
.ms-year {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
}

.ms-year::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--secondary-color);
    margin-top: 8px;
    transition: width 0.3s ease;
}

.ms-item:hover .ms-year::after {
    width: 48px;
}

/* Content card */
.ms-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 24px 24px 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    flex: 1;
    width: 100%;
}

.ms-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
    border-radius: 3px 0 0 3px;
    opacity: 0.5;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.ms-item:hover .ms-card {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(var(--secondary-rgb), 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(var(--secondary-rgb), 0.1);
}

.ms-item:hover .ms-card-accent {
    opacity: 1;
    width: 4px;
}

.ms-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.ms-card p:last-child {
    margin-bottom: 0;
}

.ms-card ul {
    margin: 0;
    padding-left: 20px;
}

.ms-card li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.ms-card li:last-child {
    margin-bottom: 0;
}

/* 9. Partners */
.about-partners {
    padding: 100px 0;
    background: var(--surface-color);
    position: relative;
}

.about-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.partners-intro {
    text-align: left;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 0 48px;
    line-height: 1.7;
}

.partners-section {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.partners-section:last-child {
    margin-bottom: 0;
}

.partners-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(var(--secondary-rgb), 0.1);
}

.partners-logo-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 4px 0;
}

.partners-logo-grid::-webkit-scrollbar {
    display: none;
}

.partners-logo-grid.is-marquee {
    width: max-content;
    min-width: 100%;
    overflow: visible;
    animation: partners-marquee var(--marquee-duration, 28s) linear infinite;
    will-change: transform;
}

.partners-logo-grid.is-marquee:hover {
    animation-play-state: paused;
}

.partner-logo-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 180px;
    min-height: 80px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-logo-card img {
    width: 140px;
    height: 48px;
    object-fit: contain;
    object-position: center;
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

@keyframes partners-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .vision-cards-row {
        grid-template-columns: 1fr;
    }

    .whoweare-grid,
    .whatwedo-cards,
    .different-grid,
    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .howwework-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ms-timeline-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .ms-timeline-track {
        display: none;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

}

@media (max-width: 768px) {
    .about-hero-content {
        padding: 100px 20px 60px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-intro {
        font-size: 0.95rem;
    }

    .about-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-vision,
    .about-whoweare,
    .about-whatwedo,
    .about-howwework,
    .about-different,
    .about-leaders,
    .about-milestones,
    .about-partners {
        padding: 56px 0;
    }

    .howwework-grid {
        grid-template-columns: 1fr;
    }

    .ms-timeline-items {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ms-dot-wrap {
        display: none;
    }

    .ms-item {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }

    .ms-year {
        flex: 0 0 80px;
        font-size: 1.3rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 24px;
        padding-right: 20px;
        text-align: right;
        border-right: 2px solid rgba(255, 255, 255, 0.12);
        margin-bottom: 0;
    }

    .ms-year::after {
        display: none;
    }

    .ms-card {
        margin-left: 20px;
    }

    .contact-secondary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 1.75rem;
    }

    .partners-logo-grid {
        gap: 8px;
    }

    .partner-logo-card {
        flex-basis: 148px;
    }
}

/* =========================================
   ABOUT US - MOBILE OPTIMIZATION (8px scale)
   ========================================= */
@media (max-width: 768px) {
    /* Vision & Mission */
    .about-vision {
        padding: 40px 0;
    }

    .vision-layout-v2 {
        gap: 24px;
    }

    .vision-cards-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .video-embed {
        border-radius: 16px;
    }

    .vision-card {
        border-radius: 16px;
        padding: 24px 16px;
    }

    .vision-icon {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .vision-card h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .vision-card p {
        font-size: 0.9rem;
    }

    /* Who We Are */
    .about-whoweare {
        padding: 40px 0;
    }

    .whoweare-grid {
        gap: 16px;
    }

    .whoweare-card {
        border-radius: 16px;
        padding: 24px 16px;
    }

    .whoweare-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        margin-bottom: 16px;
    }

    .whoweare-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .whoweare-card p {
        font-size: 0.88rem;
    }

    /* What We Do */
    .about-whatwedo {
        padding: 40px 0;
    }

    .whatwedo-header {
        margin-bottom: 24px;
    }

    .whatwedo-intro {
        font-size: 0.95rem;
    }

    .whatwedo-cards {
        gap: 16px;
    }

    .whatwedo-card {
        border-radius: 16px;
        padding: 24px 16px;
    }

    .whatwedo-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        margin-bottom: 16px;
    }

    .whatwedo-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .whatwedo-card p {
        font-size: 0.88rem;
    }

    .whatwedo-card-links {
        margin-top: 16px;
    }

    .whatwedo-cta {
        font-size: 0.85rem;
    }

    /* How We Work */
    .about-howwework {
        padding: 40px 0;
    }

    .howwework-grid {
        gap: 16px;
    }

    .howwework-card {
        border-radius: 16px;
        padding: 24px 16px;
    }

    .howwework-number {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .howwework-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .howwework-card p {
        font-size: 0.85rem;
    }

    /* What Makes Us Different */
    .about-different {
        padding: 40px 0;
    }

    .different-grid {
        gap: 16px;
    }

    .different-card {
        border-radius: 16px;
        padding: 24px 16px;
    }

    .different-icon {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        margin-bottom: 16px;
    }

    .different-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .different-card p {
        font-size: 0.88rem;
    }

    /* Leaders */
    .about-leaders {
        padding: 40px 0;
    }

    .leaders-grid {
        gap: 16px;
    }

    .leader-card {
        border-radius: 16px;
        padding: 24px 16px;
    }

    .leader-avatar {
        width: 72px;
        height: 72px;
        margin-bottom: 16px;
    }

    .leader-avatar span {
        font-size: 1.2rem;
    }

    .leader-card h3 {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .leader-title {
        font-size: 0.85rem;
    }

    /* Milestones */
    .about-milestones {
        padding: 40px 0;
    }

    .ms-timeline {
        margin-top: 24px;
    }

    .ms-card {
        border-radius: 8px;
        padding: 16px 16px 16px 20px;
        margin-left: 16px;
    }

    .ms-card p {
        font-size: 0.85rem;
    }

    .ms-card li {
        font-size: 0.85rem;
    }

    .ms-year {
        flex: 0 0 64px;
        font-size: 1.15rem;
        padding-top: 16px;
        padding-right: 16px;
    }

    /* Partners */
    .about-partners {
        padding: 40px 0;
    }

    .partners-intro {
        font-size: 0.9rem;
        margin-bottom: 32px;
    }

    .partners-section {
        margin-bottom: 24px;
    }

    .partners-logo-grid {
        gap: 8px;
    }

    .partner-logo-card {
        border-radius: 8px;
        padding: 16px 8px;
        font-size: 0.85rem;
    }
}
