.video-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.video-player {
    width: 50%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-section {
        min-height: 400px;
        padding: 1rem;
    }

    .video-player {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}
