.videos {
    padding: 20px 0;

}

.video-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.video-item:last-child {
    margin-bottom: 0;
}

.video-content {
    flex: 1;
}

.video-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.video-content p {
    color: var(--secondary-color);
    line-height: 1.8;
}

.video-embed {
    flex: 1;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .video-item {
        flex-direction: column !important;
        gap: 20px;
        padding: 20px;
    }
    
    .video-embed {
        width: 100%;
    }
    
    .video-content {
        text-align: center;
    }
    
    .video-content h3 {
        font-size: 1.5rem;
    }
}
