.video-section {
    padding: 3rem 0;
    background: #E8F5FA;
    text-align: center;
}

.video-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.video-content h2 {
    margin-bottom: 1rem;
}

.video-support {
    max-width: 44rem;
    margin: 0 auto 1.5rem;
    color: var(--text-color);
    font-size: 1.25rem;
    line-height: 1.6;
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 1rem;
    background: #000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.video-frame iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    border: 0;
}

.video-frame:focus-within {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.video-cta {
    margin-top: 1.5rem;
}

.video-cta p {
    margin: 0.75rem auto 0;
    color: #6A6C70;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-content {
        padding: 0;
    }

    .video-support {
        font-size: 1.125rem;
    }

    .video-cta .btn {
        width: 100%;
        max-width: 22rem;
    }
}
