/* Hero Container Alignment */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.hero-content, .hero-video {
    display: flex;
    flex-direction: column;
}

.hero-video {
    align-items: center;
}

.video-container {
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.video-responsive {
    position: relative;
    padding-bottom: 76.25%; /* Increased from 56.25% to 76.25% to show more of the video */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    border: 0;
    transform: scale(1.1) translateY(-10%);
}

.hero-video .cta-container {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
    width: 100%;
    justify-content: center;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-video {
        margin-top: var(--spacing-md);
    }
}
