.section-container {
    background: linear-gradient(135deg, #1e1e1e 0%, #c2185b 100%);

    padding: 2rem;

}

.section-header {
    text-align: center;
    color: #fff;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.25rem;
    color: #ff4081;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

.section-header p {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.staff-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.staff-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 300px;
    text-align: center;
    position: relative;
}

.staff-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.staff-card-content {
    padding: 1rem;
}

.staff-card-content .profile-img-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.staff-card-content img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff4081;
}

.staff-card-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0.5rem 0;
}

.staff-card-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.staff-card-content .role {
    font-size: 0.875rem;
    color: #ff4081;
    margin: 0.5rem 0;
}

.staff-card-content .social-links {
    margin-top: 1rem;
}

.staff-card-content .social-links a {
    text-decoration: none;
    color: #ff4081;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.3s ease-in-out;
}

.staff-card-content .social-links a:hover {
    color: #c2185b;
}

@media (max-width: 768px) {
    .staff-card {
        width: 100%;
        max-width: 400px;
    }
}