.staff-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.staff-section .section-title {
    font-size: 32px;
    color: #0a2a70;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

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

.staff-card {
    background: #e8edfa;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(10, 42, 112, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 42, 112, 0.3);
}

.staff-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.staff-name {
    font-size: 20px;
    font-weight: 700;
    color: #0a2a70;
    margin-bottom: 5px;
}

.staff-designation {
    font-size: 15px;
    color: #005caa;
    font-weight: 500;
    margin-bottom: 5px;
}

.staff-qualifications {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.5;
}

.staff-email a {
    color: #0a2a70;
    text-decoration: none;
    font-weight: 500;
}

.staff-email a:hover {
    text-decoration: underline;
}
