.video-section-container {
    position: relative;
    width: 100%;
    margin: 3rem 0;
}

.video-container {
    position: relative;
    width: 100%;
    min-height: 70vh;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(var(--sena-azul-oscuro-rgb), 0.75), rgba(var(--sena-verde-rgb), 0.75));
    z-index: 2;
}

.video-section {
    position: relative;
    z-index: 3;
    background-color: rgba(var(--sena-verde-rgb), 0.75);
    border-radius: 20px;
    color: #fff;
    width: 100%;
    max-width: 900px;
    padding: 3rem;
    margin: 4rem auto;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.video-title {
    font-family: 'Inter', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.video-text {
    text-align: justify;
    font-family: 'Inter', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.list_1 {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.list_1 li {
    padding: 1.25rem 1.5rem;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 600;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border-left: 5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.list_1 li:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(15px);
    border-left-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.list_1 li i {
    font-size: 1.3rem;
    margin-right: 0.75rem;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .video-container {
        min-height: 50vh;
    }

    .background-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .video-section {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
}