/* YouTube Video Section Styles */
.video-section {
    padding: 3rem 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.video-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.video-description {
    text-align: center;
    max-width: 700px;
    margin: 1.5rem auto 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        margin: 0 15px;
    }
    
    .video-description {
        padding: 0 15px;
    }
}
