.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.about-content {
    padding: 4rem 0;
}

.about-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-section h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mv-card {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border: 2px solid var(--secondary);
    border-radius: 12px;
    padding: 2rem;
}

.mv-card h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text);
    line-height: 1.8;
}

.values {
    margin: 4rem 0;
}

.values h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem 1rem;
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-light);
}

.team {
    background: var(--bg-light);
    padding: 4rem 0;
}

.team h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.member-photo {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: var(--text);
    margin-bottom: 0.25rem;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-certifications {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.member-certifications span {
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.certifications {
    padding: 4rem 0;
}

.certifications h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cert-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.cert-item p {
    color: var(--text);
    font-weight: 600;
}