.slideshow-container1, .slideshow-container2 {
    position: relative;
    width: auto;
    height: 90vh;
}

.slide1, .slide2 {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide1.active, .slide2.active {
    opacity: 1;
}

.slide1 img, .slide2 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nav-button1, .nav-button2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    transition: background 0.3s ease;
    z-index: 100;
}

.nav-button1:hover, .nav-button2:hover {
    background: rgba(255, 255, 255, 0.9);
}

.nav-button1:active, .nav-button2:active {
    transform: translateY(-50%) scale(0.95);
}

.prev1, .prev2 {
    left: 20px;
}

.next1, .next2 {
    right: 20px;
}

.image-counter1, .image-counter2 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 100;
}