.values-section {
    padding: 0;
    margin-top: -90px;
    position: relative;
    z-index: 4;
}

.values-container {
    padding: 0 20px;
}

.value-card {
    background: #598339;
    border-radius: 0px 0px 70px 20px;
    padding: 30px;
    margin-bottom: 30px;
    height: 100%;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: start;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.value-card.enrichissement {
    background: #FF5722;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.15); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon img {
    width: 90%;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'poppins', sans-serif !important;
}

.card-description {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-family: 'poppins', sans-serif !important;

}

/* Responsive adjustments for cards only */
@media (max-width: 768px) {
    .values-section {
        margin-top: -80px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .values-section {
        margin-top: -60px;
    }

    .value-card {
        padding: 20px 15px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 14px;
    }
}

#carouselExample {
    height: 400px !important;
}

#carouselExample .carousel-item {
    height: 400px !important;
}

#carouselExample .carousel-item img.carousel-img {
    height: 100% !important;
    object-fit: cover !important;
}

.carousel-caption-custom {
    bottom: 20% !important;
}