html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.swiper-container {
    width: 100%;
    height: auto;
    padding-top: 100px;
}

.swiper-wrapper {
    padding-top: 20px; 
    padding-bottom: 100px !important; 
}

.swiper-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-right: 0px !important;
}

.benefit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 5px;

    transition: transform 0.3s ease;
    max-width: 300px; 
}

.benefit-box:hover {
    transform: translateY(-10px);
}

.icon-benefit {
    background-color: #c1b800;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    padding: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.icon-benefit img {
    max-width: 30px;
    max-height: 30px;
}

.benefit-box h4 {
    color: #333;
}

.benefit-box p {
    color: #666;
    width: 100%; /* Full width of the box */
}

.swiper-button-next, .swiper-button-prev {
    color: black !important;
    top: 57% !important; 
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 25px !important;
}

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.swiper-pagination-bullet-active {
    background: black !important;
}

@media (max-width: 768px) {
    .benefit-box {
        max-width: 100%; 
    }

    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
}