.video-container {
    margin-top: 20px;
    text-align: center;
}

.video-container video {
    max-width: 100%;
    height: auto;
}

.image-banner-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.banner {
    position: relative;
    display: inline-block;
}

.banner img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: none;
}

.banner .active {
    display: block;
}

.banner-buttons {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.banner-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}

.banner-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
