.staff-section {
    max-width: 1300px;
    margin: 40px auto;
    padding: 35px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #16a085;
    text-align: center;
}

.staff-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

.staff-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
}

.staff-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.staff-container {
    padding: 0;
}

.staff-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-5px);
}

.staff-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    border: 3px solid #16a085;
}

.staff-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.staff-card h4 {
    font-size: 18px;
    color: #1a73e8;
    margin-bottom: 10px;
}

.staff-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .staff-card {
        padding: 15px;
    }

    .staff-image {
        width: 80px;
        height: 80px;
    }

    .staff-card h3 {
        font-size: 18px;
    }

    .staff-card h4 {
        font-size: 16px;
    }

    .staff-card p {
        font-size: 13px;
    }
}