/* Start custom CSS for html, class: .elementor-element-9deba37 */body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Warna lebih soft */
    color: #333;
    line-height: 1.4;
}

.container {
    width: 75%; /* Lebih lebar untuk desktop */
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    padding: 1rem;
}

section.toggle-section {
    padding: 2rem 1.5rem;
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.toggle-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

section h2 {
    color: #1e7e34;
    margin-bottom: 0.8rem;
    text-align: left;
    font-size: 2rem; /* Lebih besar untuk desktop */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-content {
    padding: 1.2rem 1.5rem;
    display: none;
    line-height: 1.6;
}

.section-content.show {
    display: block;
}

.toggle-button {
    background: #1e7e34;
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}
.table-container {
    width: 100%;
    overflow-x: auto; /* Bikin tabel bisa di-scroll ke samping */
    white-space: nowrap; /* Supaya teks di dalam tabel tidak turun ke bawah */
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
    }

    table {
        width: 900px; /* Lebar tabel lebih besar dari layar agar bisa di-scroll */
    }
}


.toggle-button:hover {
    background: #0f4c29;
    transform: scale(1.05);
}

#visi-misi .misi {
    margin-bottom: 0.8rem;
}

#visi-misi ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Perbaikan Tampilan di Ponsel */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0.8rem;
    }

    section.toggle-section {
        padding: 1rem;
        margin-bottom: 0.8rem;
        border-radius: 8px;
        text-align: left; /* Pastikan teks tidak center */
    }

    .section-title {
        flex-direction: row;
        align-items: center;
        padding: 0.5rem;
        justify-content: space-between;
    }

    section h2 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
        text-transform: uppercase;
        font-weight: bold;
    }

    .toggle-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .section-content {
        padding: 0.6rem;
        text-align: left;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .table-container {
        overflow-x: auto;
        width: 100%;
    }

    table {
        width: 100%;
        font-size: 0.85rem;
    }

    table th, table td {
        padding: 8px;
    }
}
/* ===== SECTION CARD ISLAMI ===== */
.toggle-section {
    padding: 40px 20px;
}

.toggle-section .container {
    max-width: 1000px;
    margin: auto;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0f3d2e, #145c42);
    padding: 20px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.section-title h2 {
    margin: 0;
    color: #f5e6b3;
    font-size: 22px;
    letter-spacing: 1px;
}

.toggle-button {
    background: linear-gradient(135deg,#b8860b,#e6c65c);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: #052e24;
    transition: 0.3s;
}

.toggle-button:hover {
    transform: scale(1.05);
}

.section-content {
    background: #ffffff;
    margin-top: 15px;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: none;
    animation: slideDown 0.4s ease;
}

.section-content.show {
    display: block;
}

.section-content p,
.section-content li {
    color: #333;
    line-height: 1.7;
}

.section-content h3 {
    color: #0f3d2e;
    margin-top: 15px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4183268 */body {
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

#toggle-program {
    background: linear-gradient(135deg,#0f3d2e,#145c42);
    color: #f5e6b3;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: 0.3s;
}

#toggle-program:hover {
    transform: scale(1.05);
}

.info {
    background: #f5e6b3;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: #0f3d2e;
    border-left: 5px solid #b8860b;
    margin-bottom: 20px;
}

.program-wrapper {
    max-height: 500px;
    overflow: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.program-table {
    width: 100%;
    border-collapse: collapse;
}

.program-table thead {
    background: linear-gradient(135deg,#0f3d2e,#145c42);
    color: #f5e6b3;
}

.program-table th,
.program-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.program-table tbody tr:hover {
    background: rgba(15,61,46,0.05);
}

.toggle-deskripsi {
    background: #b8860b;
    color: #052e24;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
}

.toggle-deskripsi:hover {
    opacity: 0.85;
}

/* Detail muncul elegan */
.detail-row {
    display: none;
    background: #f9f9f9;
    font-size: 14px;
    color: #333;
}

.detail-row td {
    padding: 15px;
    font-style: italic;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ef6b1f3 *//* Reset default margin dan padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container utama */
.container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
}

/* Tombol download */
.download-button {
    display: inline-block;
    background: #28a745; /* Warna hijau */
    color: #fff; /* Teks putih */
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.download-button:hover {
    background: #218838; /* Warna hijau lebih gelap saat hover */
}

/* Teks deskripsi */
.download-links p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}/* End custom CSS */