.about-mission-section {
    background: var(--white);
}

.mission-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mission-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.value-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.value-row:hover {
    border-color: var(--green);
    background: #f0fdf4;
}

.value-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.value-icon.green {
    background: #dcfce7;
}

.value-icon.blue {
    background: #e0f2fe;
}

.value-row h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.value-row p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Stats strip */
.stats-strip {
    background: linear-gradient(135deg, var(--dark), #1a3a5c);
    padding: 56px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--green-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    font-weight: 500;
}

/* Team */
.team-section {
    background: var(--off-white);
}

.team-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.team-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    margin: 0 auto 18px;
}

.team-name {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* FAQ section */
.faq-section {
    background: var(--white);
}

.faq-list {
    margin-top: 48px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    gap: 16px;
}

.faq-question:hover {
    color: var(--green);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-icon {
    background: var(--green);
    transform: rotate(45deg);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--text-muted);
}

.faq-item.open .faq-icon svg {
    stroke: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

