/* Page Header */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
}

.header-subtitle {
    font-size: 1rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.mission-card, .vision-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 119, 182, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon i {
    font-size: 1.75rem;
    color: var(--secondary);
}

.mission-card h2, .vision-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.mission-card p, .vision-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
}

.card-decoration {
    display: none;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.about-content p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.feature-item i {
    color: var(--secondary);
    font-size: 1rem;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--text);
}

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

.stat-card {
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    transition: all 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    border-color: var(--secondary);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray);
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.value-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all 0.25s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 119, 182, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: var(--white);
}

.team-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: all 0.25s ease;
}

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

.team-image-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social {
    display: none;
}

.team-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.team-role {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.team-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--primary);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 1.75rem;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .about-stats {
        margin-top: 2rem;
    }
    .team-image-wrapper {
        width: 120px;
        height: 120px;
    }
}