.video-tengah {
    width: 100%;
    text-align: center; 
    margin-bottom: 40px;
}

.video-tengah video {
    display: block; 
    margin: 0 auto !important; 
    width: 80%; 
    max-width: 800px; 
    border-radius: 12px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); 
}

/* --- GAYA UNTUK GRID FOTO ALA INSTAGRAM --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* --- WADAH UTAMA BROSUR --- */
.brosur-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.brosur-header {
    display: flex;
    justify-content: space-between;
    /* Judul di kiri, tombol di kanan */
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.brosur-title {
    font-size: 24px;
    font-weight: 700;
    color: #2fb14d;
    margin: 0;
}

.btn-download {
    background-color: #2fb14d;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 177, 77, 0.3);
}

.btn-download:hover {
    background-color: #248a3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 177, 77, 0.4);
}

.brosur-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px 0 10px 0;
    scrollbar-width: none;
}

.brosur-slider::-webkit-scrollbar {
    display: none;
}

.brosur-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

/* BAGIAN YANG DIUBAH UNTUK MENGECILKAN FOTO */
.brosur-item img {
    width: 80%; 
    max-width: 800px; 
    height: auto;
    display: block;
    margin: 0 auto; 
    border-radius: 12px; 
}

.swipe-info {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 15px;
}

/* Responsif HP */
@media (max-width: 600px) {
    .brosur-header {
        justify-content: center;
        text-align: center;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
    }
}