.final-section {
    padding: 50px 0;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.carousel {
    width: 700px; 
    height: 799px; 
    overflow: hidden; 
    border: 50px solid #739B5F; 
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.logo-container {
    margin-top: 20px;
}

.logo-container img {
    width: 200px;
    height: auto;
    object-fit: contain;
}


@media (max-width: 768px) {
    .carousel {
        width: 90%;
        height: auto;
    }

    .logo-container img {
        width: 150px;
    }
}
