.section-below-header {
    display: flex;
    gap: 20px;
    max-width: 1450px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 0 40px;
    height: 400px; /* уменьшаем высоту секции */
}
  
.slider {
    flex: 2;
    position: relative;
    height: 100%;
    background: #fff;
}
  
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}
  
.slide {
    display: none;
    height: 100%;
    position: relative;
}
  
.slide img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
    object-fit: cover;
}
  
.slide .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #002080; /* темно-синий цвет как в оригинале */
}
  
.slide.active {
    display: block;
}
  
.dots {
    position: absolute;
    bottom: 60px; /* отступ от нижнего края */
    left: 20px; /* выравнивание по левому краю */
    z-index: 2;
}
  
.dot {
    height: 14px;
    width: 14px;
    margin: 0 4px;
    display: inline-block;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}
  
.dot.active {
    background-color: #002080; /* темно-синий цвет как в оригинале */
}
  
.right-banners {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
  
.right-banners img {
    width: 100%;
    flex: 1;
    border-radius: 0;
}