
body {
    font-family: "Karla", sans-serif;
    color: #707070; }
    /* General styles for the team section */
#team {
    padding: 100px 0;
    background-color: #ffffff; 
}

.section-heading h2 {

    color: #333; 
    margin-bottom: 20px; 
    text-align: center;
}

.section-heading p {
    font-size: 1.2rem; 
    color: #555; 
    margin-bottom: 40px;
    text-align: center;
}
.section-heading img {
    display: block;
    margin: 0 auto;
}

/* Styling for team member cards */
.single-team-member {
    background-color: #fff;
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(207, 116, 116, 0.1); 
    padding: 20px; 
    transition: transform 0.3s; 
}

.single-team-member:hover {
    transform: translateY(-5px);
}

.team-info h5 {
    font-size: 1.5rem; 
    color: #333; 
    margin-top: 15px; 
}

.team-info p {
    font-size: 1rem; 
    color: #666;
    line-height: 1.6; 
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 2rem; 
    }
    .section-heading p {
        font-size: 1rem; 
    }
}
