.meet-our-staff {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.meet-our-staff h1, .meet-our-staff h2 {
    color: #333;
    margin-bottom: 20px;
}

.meet-our-staff .intro-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.meet-our-staff .intro-description {
    font-size: 1rem;
    margin-bottom: 30px;
}

.staff-section {
    margin-bottom: 40px;
}

.staff-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.staff-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #e01d48;
}

.staff-card p {
    font-size: 1rem;
    color: #555;
}

.modal-body img {
    display: block;
    margin: 0 auto 15px;
    /* border-radius: 50%; */
}

/* Banner Section */
.banner {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

.banner-image {
    width: 100%;
    height: auto;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.banner-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}

.banner-text p {
    font-size: 1.5rem;
    margin: 0;
}