.page-hero {
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
    border-bottom: 1px solid #E2E8F0;
}

.team-section {
    padding: 80px 0;
}

.team-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #E2E8F0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 61, 245, 0.9), rgba(6, 182, 212, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5B3DF5;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #5B3DF5;
    color: white;
    transform: scale(1.1);
}

.team-content {
    padding: 24px 16px;
    background: white;
    text-align: center;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 4px;
}

.team-title {
    color: #5B3DF5;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.team-bio {
    font-size: 13px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #5B3DF5;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748B;
    font-weight: 600;
    margin: 0;
}

.value-card {
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 10px 25px rgba(91, 61, 245, 0.1);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}