/* Section Video */
.video-section {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;    /* Memusatkan secara horizontal */
    justify-content: center; /* Memusatkan secara vertikal jika ada tinggi sisa */
    text-align: center;
    background-color: #f0f4f8;
    width: 100%;            /* Memastikan section mengambil lebar penuh */
}

.video-section h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
    font-size: 2.5rem;
    width: 100%;            /* Memastikan teks judul punya ruang untuk center */
}

/* Container Video */
.video-container {
    margin: 0 auto;         /* Pengaman tambahan untuk memusatkan di tengah */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;         /* Menghilangkan gap kecil di bawah iframe */
    width: fit-content;     /* Container mengikuti lebar video saja */
}

/* Pengaturan Iframe agar pas */
.video-container iframe {
    display: block;
    max-width: 100%;
}