#our-staff {
    background-color: #f7f7f7;
    padding: 50px 0;
    text-align: center;
    font-family: 'Fredoka';
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 36px;
    color: rgb(247, 161, 175);
    margin-bottom: 40px;
}

.staff-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.staff-member {
    background-color: white;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.staff-member:hover {
    transform: translateY(-10px);
}

.staff-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
}

.staff-member h3 {
    font-size: 24px;
    color: rgb(115, 228, 115); /* Friendly and vibrant color */
    margin-top: 15px;
}

.staff-member p {
    font-size: 16px;
    color: #777;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .staff-grid {
        flex-direction: column;
        align-items: center;
    }

    .staff-member {
        width: 80%;
    }
}
