.video-section {
    background-color: #f8f9fa;
}

.video-section .subtitle {
    color: #f7a442;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.video-wrapper {
    max-width: 800px; /* Adjusted for square ratio */
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ratio-1x1 {
    width: 100%;
    aspect-ratio: 1;
    background: #000;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from contain to cover */
}

@media (max-width: 768px) {
    .video-section h2 {
        font-size: 2rem;
    }
    
    .video-wrapper {
        max-width: 100%;
        margin: 0 15px;
    }
    
    .ratio-1x1 {
        aspect-ratio: 1;
    }
}