.page-hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}
.page-hero h1 { font-size: 36px; font-weight: 700; margin-bottom: 15px; }
.page-hero p { font-size: 16px; opacity: 0.9; max-width: 700px; margin: 0 auto; line-height: 1.7; }
.section-wrap { padding: 70px 0; }
.section-wrap.bg-light { background: #f5f8ff; }
.section-heading { text-align: center; margin-bottom: 50px; }
.section-heading h2 { font-size: 28px; font-weight: 600; color: #333; margin-bottom: 10px; }
.section-heading p { color: #888; font-size: 15px; }
.section-heading h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    margin: 12px auto 0;
    border-radius: 2px;
}
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mission-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.mission-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}
.mission-icon.purple { background: #f0e6ff; color: #6a11cb; }
.mission-icon.blue { background: #e6f0ff; color: #2575fc; }
.mission-icon.orange { background: #fff3e6; color: #e67e22; }
.mission-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: #333; }
.mission-card p { font-size: 14px; color: #666; line-height: 1.7; }
.story-content { max-width: 850px; margin: 0 auto; }
.story-content p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 18px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stat-number { font-size: 32px; font-weight: 700; color: #2575fc; margin-bottom: 8px; }
.stat-label { font-size: 15px; color: #666; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}
.team-avatar.purple { background: #f0e6ff; color: #6a11cb; }
.team-avatar.blue { background: #e6f0ff; color: #2575fc; }
.team-avatar.orange { background: #fff3e6; color: #e67e22; }
.team-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 5px; color: #333; }
.team-role { font-size: 13px; color: #2575fc; margin-bottom: 12px; font-weight: 500; }
.team-card p { font-size: 14px; color: #666; line-height: 1.6; }
.cta-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}
.cta-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 16px; opacity: 0.9; margin-bottom: 30px; }
.cta-section .btn-white {
    background: #fff;
    color: #2575fc;
    padding: 14px 36px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 0 8px;
    transition: transform 0.3s;
}
.cta-section .btn-white:hover { transform: translateY(-2px); }
.cta-section .btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 36px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.6);
    margin: 0 8px;
    transition: transform 0.3s;
}
.cta-section .btn-outline:hover { transform: translateY(-2px); border-color: #fff; }
@media (max-width: 768px) {
    .page-hero { padding: 50px 0; }
    .page-hero h1 { font-size: 26px; }
    .mission-grid, .team-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .section-wrap { padding: 50px 0; }
    .cta-section .btn-white, .cta-section .btn-outline { display: block; margin: 10px auto; max-width: 220px; }
}
