/* people Section Styles */
.people-section {
    background-color: #FAFBF4;
}

.people-member {
    padding: 15px;
}

.member-image img {
    border-radius: 10px;
}

.member-name {
    margin: 15px 0 5px;
    font-size: 1.2rem;
}

.member-position {
    color: #666;
    margin-bottom: 10px;
}

.member-social {
    margin-top: 15px;
}

.member-social .social-link {
    color: #333;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.member-social .social-link:hover {
    color: #4CAF50;
}

/* Owl Carousel Custom Navigation */
.people-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.people-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.people-carousel .owl-nav button.owl-next {
    right: -20px;
}

.people-carousel .owl-nav button i {
    font-size: 20px;
    color: #333;
}

.people-carousel .owl-nav button:hover {
    background: #4CAF50 !important;
}

.people-carousel .owl-nav button:hover i {
    color: white;
}