.video-gallery-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin: 50px auto;
}
.container-video {
    max-width: 1200px;
    display: flex;
    gap: 40px;
    padding: 0 15px;
    align-items: center;
}
.text-content {
    flex: 1;
    text-align: left;
}
.text-content h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}
.text-content h2::before {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: #2c3e50;
    margin: 0 auto 10px 0;
    border-radius: 5px;
}
.text-content .video-description {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
    line-height: 1.6;
}
.text-content .view-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.text-content .view-more-btn:hover {
    background-color: #1a242f;
}
.video-container {
    flex: 1;
    position: relative;
    padding-bottom: 26%; /* Maintain aspect ratio 16:9 */
    height: 10;
    overflow: hidden;
    background: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}





/* Responsive Styles */
@media (max-width: 768px) {
    .container-video {
        flex-direction: column;
        align-items: center;
    }

    .text-content {
        text-align: center;
    }

    .text-content h2 {
        font-size: 28px;
    }

    .text-content h2::before {
        margin: 0 auto 15px auto;
    }

    .text-content .video-description {
        font-size: 16px;
    }

    .video-container {
        width: 100%;
        padding-bottom: 56.25%; /* Maintain aspect ratio 16:9 */
    }
}

@media (max-width: 480px) {
    .text-content h2 {
        font-size: 24px;
    }

    .text-content h2::before {
        width: 50px; /* Further adjust width for very small screens */
    }

    .text-content .video-description {
        font-size: 14px;
    }

    .text-content .view-more-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}