/* Исправления для слайдера, чтобы изображения отображались полностью */
#mainCarousel {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-item {
    max-height: 500px; /* Максимальная высота вместо фиксированной */
    overflow: hidden;
    position: relative;
    background-color: #f8f8f8;
}

.carousel-item img {
    width: 100%;
    height: auto; /* Автоматическая высота вместо 100% */
    max-height: 500px; /* Максимальная высота изображения */
    object-fit: contain; /* contain вместо cover - изображение полностью помещается */
    object-position: center;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 768px) {
    .carousel-item {
        max-height: 300px; /* Уменьшаем высоту для мобильных */
    }
    
    .carousel-item img {
        max-height: 300px;
    }
}