:root {
    --blue: #1e3a8a;
    --light-blue: #3b82f6;
    --orange: #f97316;
    --background: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --card-shadow: rgba(0, 0, 0, 0.06);
}

.about-page {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.about-page .section-title {
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    color: var(--blue);
    margin-bottom: 20px;
    position: relative;
}

.about-page .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--orange);
    margin: 10px auto 0;
    border-radius: 2px;
}

.about-page section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.about-page .about,
.about-page .team {
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--card-shadow);
    margin-bottom: 40px;
}

.about-page .about p,
.about-page .mission p {
    font-size: 1.15em;
    color: var(--muted);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

.about-page .mission {
    background: transparent;
    box-shadow: none;
}

.about-page .team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.about-page .team-member {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px var(--card-shadow);
    text-align: center;
    flex: 1 1 240px;
    max-width: 260px;
    transition: all 0.3s ease-in-out;
}

.about-page .team-member:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.about-page .team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--light-blue);
    margin-bottom: 20px;
}

.about-page .team-member h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--blue);
    margin: 0;
}

.about-page .team-member p {
    font-size: 0.95em;
    color: var(--muted);
    margin-top: 8px;
}

@media (max-width: 768px) {
    .about-page .team-grid {
        flex-direction: column;
        align-items: center;
    }
}