.container-video {
    margin-bottom: 40px;
}

.viewer-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
    text-align: center;
}

.viewer-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    padding: 0 15px;
}

.col-sm-12.text-center {
    margin-top: 20px;
    margin-right: 200px;
}

.viewer-grid {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    margin: 60px 50px 90px;
}

.viewer-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.viewer-col {
    flex: 1 1 calc(50% - 20px);
    max-width: 650px;
    display: flex;
    align-items: center;
}

.viewer-col.left {
    justify-content: flex-end;
    text-align: right;
}

.viewer-col.right {
    justify-content: flex-start;
    text-align: left;
}

.viewer-cell {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rounded-corners {
    border-radius: 60px;
    border: 1px solid #ccc;
}

.viewer-cell .button-container {
    position: absolute;
    left: 50%;
    bottom: 0%;
    transform: translateX(-50%);
    text-align: center;
}
.button-container {
    justify-content:center;
}
.viewer-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.no-margin {
    margin: 0;
}

.text-align-left {
    text-align: left;
}

.justify-content-left {
    justify-content: flex-start;
}

.viewer-banner {
    width: 100%;
    height: auto;
    aspect-ratio: 1920/450;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .viewer-title {
        font-size: 28px;
    }
    .viewer-description {
        font-size: 16px;
    }
    .col-sm-12.text-center {
        margin-right: 0;
    }
    .viewer-row {
        flex-direction: column;
        align-items: center;
    }
    .viewer-col {
        flex: none;
        width: calc(100% - 40px);
        margin: 0 20px;
        height: auto;
        justify-content: center;
        text-align: center;
        max-width: none;
    }

    .viewer-banner {
        transform: scale(1.3);
    }
    .viewer-grid {
        margin: 60px 0px 90px;
    }
}
