.section-video-first,
.section-video-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px; 
    padding: 60px 20px;

}

.section-title {
    font-family: 'Roboto', sans-serif; 
    font-weight: 700;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
}

.section-description {
    font-family: 'Open Sans', sans-serif; 
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 680px; 
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.section-video-first {
    background-color: #c1b9b1; 
    color: var(--color-primary); 
}

.section-video-second {
    background-color: var(--color-custom-2); 
    color: var(--color-secondary); 
}


.video-container {
    position: relative;
    width: 100%;
    max-width: 700px; 
    padding-bottom: 56.25%; 
    margin: 0 auto 0; 
    border-radius: 8px; 
    overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background-color: black; 
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; 
    object-fit: contain; 
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem; 
    }
    .section-description {
        font-size: 1rem;
        max-width: 90%; 
    }
    .video-container {
        max-width: 90%; 
    }
}