.image-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    border-radius: 20px;
}

.slide {
    min-width: 100%;
    height: auto;
    border-radius: 20px;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

button {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}