.sectionHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--color-gray-200);
    padding-bottom: 1rem;
}

.contentSection {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.aboutTitle {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}


.sectionTitle {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.textContent p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.imageContent {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.storyImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.statsSection {
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 4rem 0;
    margin: 5rem 0;
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 2rem;
}

.statItem {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.statNumber {
    font-size: 3rem;
    font-weight: 700;
}

.statLabel {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.teamSection {
    margin-top: 5rem;
}

.teamGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.teamMember {
    text-align: center;
}

.memberImageWrapper {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--color-white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.memberImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.teamMember:hover .memberImage {
    transform: scale(1.05);
}

.memberName {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.memberRole {
    color: var(--color-gold);
    font-weight: 600;
}

@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .statsGrid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .statsGrid {
        grid-template-columns: 1fr;
    }
}