/* Section staff */
.staff-section {
    padding: 50px 20px;
    text-align: center;
}

.staff-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff6347;
}

/* Grid layout for staff cards */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual staff cards */
.staff-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s; /* Add transition */
}

/* Staff card image */
.staff-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Staff card title */
.staff-card h3 {
    font-size: 1.5rem;
    color: #ff6347;
    margin-bottom: 10px;
}

/* Staff card paragraph */
.staff-card p {
    font-size: 1rem;
    color: #666;
}

/* Add animation on hover */
.staff-card:hover {
    transform: translateY(-10px); /* Move card up */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Increase shadow */
}