/* Video Section */
.video-section {
    text-align: center;
    padding: 40px 20px;
}

.video-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

/* Text and Image Section */
.text-image-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 20px;
    max-width: 50%;
}

.text-content {
    flex: 1;
    max-width: 600px;
    padding: 20px;
}

.text-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.text-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.image-group {
    display: flex;
    gap: 5px;
    flex: 1;
    max-width: 400px;
}

.group-image {
    width: 100%;
    height: auto;
    flex-grow: 1;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .video-container iframe {
        height: 250px;
    }

    .text-image-section {
        flex-direction: column;
    }

    .text-content, .image-group {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .video-title, .text-title {
        font-size: 1.8rem;
    }

    .text-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .image-group .group-image {
        width: 80px;
        height: 80px;
    }
}
