.carousel-container {
        position: relative;
        width: 100%;
        max-width: 963px;
        height: auto;
        margin: 0 auto;
        overflow: hidden;
    }

    .carousel {
        display: flex;
        transition: transform 1s ease-in-out;
        width: 100%;
    }

    .carousel img {
        width: 100%;
        height: auto;
        max-height: 180px;
        object-fit: cover;
    }

    .carousel-item {
        flex: 0 0 100%;
    }

    .prev-carousel-button,
    .next-carousel-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        color: black;
        background-color: rgba(255, 255, 255, 0.63);
        padding: 10px;
        cursor: pointer;
        z-index: 1000;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .prev-carousel-button {
        left: 12px;
    }

    .next-carousel-button {
        right: 12px;
    }

    .prev-carousel-button:hover,
    .next-carousel-button:hover {
        color: #46B758;
        background-color: rgba(255, 255, 255, 0.8);
    }

    @media (max-width: 768px) {
        .carousel-item {
            flex: 0 0 100%;
        }
    }

    @media (max-width: 500px) {
        .carousel-item {
            flex: 0 0 100%;
        }
    }