* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #EAF9F6;
    color: #333;
}

main {
    flex: 1; /* Membuat konten utama mengisi ruang yang tersedia, mendorong footer ke bawah */
}

/* HEADER */
header {
    background-color: #29A399;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none; /* Hapus garis bawah dari link logo */
}

.logo img {
    width: 40px;
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    font-size: 15px;
    font-weight: 300;
}

nav a {
    color: white;
    text-decoration: none;
}

/* Sembunyikan tombol 'Tutup' di desktop */
nav ul li:last-child {
    display: none;
}

/* Sembunyikan logo di menu mobile pada tampilan desktop */
.mobile-nav-logo {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

h1.logo-text {
    font-size: 20px;
    color: white;
    font-weight: 400;
}


/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 550px; /* Menetapkan tinggi container */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 20%; /* Geser gambar sedikit ke atas */
}

/* Memberi warna latar belakang berbeda untuk section ganjil dan genap */
section:nth-of-type(even) {
    background-color: #FFFFFF;
    box-shadow: 0 0 15px rgba(0,0,0,0.05); /* Tambahkan bayangan halus */
}

/* ANIMASI SECTION SAAT SCROLL */
.reveal-section {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-section.visible {
    opacity: 1;
    transform: scale(1);
}

.map-container {
    display: flex; /* Kunci: Membuat kontainer ini menjadi flexbox */
    flex: 1;
    min-height: 350px;
    border-radius: 10px;
    overflow: hidden; /* Pastikan iframe tidak keluar dari border-radius */
}

/* Pastikan iframe peta mengisi kontainernya */
.map-container iframe {
    width: 100%;
    border: 0;
}

/* CONTENT */
.content {
    padding: 40px 20px;
    text-align: center;
    max-width: 900px; /* Batasi lebar maksimum konten di desktop */
    margin-left: auto; /* Pusatkan konten secara horizontal */
    margin-right: auto; /* Pusatkan konten secara horizontal */
}

.content h2 {
    color: #1ABC9C;
    margin-bottom: 20px;
}

.content .subtitle {
    font-style: italic;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1em;
}

/* CONTACT PAGE LAYOUT */
.contact-layout {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.contact-info-box {
    flex: 1;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.contact-info-box h3 {
    color: #1ABC9C;
}

.contact-item {
    margin-bottom: 25px;
}

.content ul {
    list-style: none;
    line-height: 2;
    font-size: 1.1em;
}

/* PERSYARATAN SECTION */
.persyaratan-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.persyaratan-pendaftaran,
.dibantu-dicarikan {
    flex: 1;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
}

.persyaratan-pendaftaran {
    background-color: #e8f8f5;
    border: 1px solid #d1e9e5;
}

.dibantu-dicarikan {
    background-color: #fff8e1;
    border: 1px solid #fbe6a2;
}

.persyaratan-container ul {
    padding-left: 20px;
    list-style: '✓  '; /* Custom bullet point */
}

.persyaratan-container h3 {
    margin-bottom: 15px;
}

/* ENGLISH PRACTICE SECTION */
#english-practice {
    background-color: #B2D7E8; /* Warna kuning muda agar menonjol */
    border-top: 2px solid #2D738F;
    border-bottom: 2px solid #2D738F;
    color: #484E62;
}

#english-practice h2 {
    color: #2E5788;
}

/* INSTRUKTUR SECTION */
.instruktur-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.instruktur-card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.instruktur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.instruktur-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.instruktur-card h3 {
    margin-bottom: 5px;
    color: #343a40;
}

.instruktur-card h4 {
    font-size: 0.9em;
    font-weight: 500;
    color: #1ABC9C;
    margin-bottom: 15px;
}
/* FASILITAS CARDS */
.fasilitas-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden; /* Agar gambar tidak keluar dari sudut rounded */
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3, .card p {
    padding: 0 20px;
    margin: 15px 0;
}

/* FASILITAS LIST (untuk halaman fasilitas.html) */
.fasilitas-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
    text-align: left;
}

.fasilitas-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.fasilitas-item:nth-child(even) {
    flex-direction: row-reverse; /* Posisi gambar dan teks berselang-seling */
}

.fasilitas-item img {
    width: 40%;
    max-width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.fasilitas-item h3 { margin-bottom: 15px; color: #1ABC9C; }

.voucher-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.voucher-logo {
    width: 50px;
    height: 50px;
}

.voucher-domain {
    font-weight: 600;
}

/* VOUCHER SECTION */
.voucher {
    display: flex;
    max-width: 600px;
    margin: 20px auto; /* Menyesuaikan margin agar lebih seimbang di dalam kontainer */
    background: linear-gradient(to right, #128C7E, #29A399, #2E5788); /* Warna gradient baru */
    color: white;
    border-radius: 10px;
    position: relative;
    text-align: left;
}

.voucher-main {
    padding: 20px 30px;
    flex-grow: 1;
    text-align: center;
}

.voucher-main h3 {
    font-size: 1.2em;
    font-weight: 400;
}

.voucher-amount {
    font-size: 2.5em;
    font-weight: 700;
    margin-top: 5px;
}

.voucher-rip {
    padding: 20px;
    flex-basis: 200px;
    border-left: 2px dashed rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9em;
}

.voucher::before, .voucher::after {
    content: '';
    position: absolute;
    width: 30px; height: 30px;
    background-color: #EAF9F6; /* Warna background body */
    border-radius: 50%;
    left: calc(100% - 200px - 15px); /* (lebar total - lebar rip - setengah lingkaran) */
}
.voucher::before { top: -15px; }
.voucher::after { bottom: -15px; }

/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: inline-flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center; /* Rata tengah horizontal */
    gap: 10px;
    background-color: #128C7E;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1em;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.whatsapp-btn img {
    width: 24px;
    height: 24px;
}

.whatsapp-btn:hover {
    background-color: #29A399;
}

/* EMAIL BUTTON (mirip dengan whatsapp-btn) */
.email-btn {
    display: inline-flex;
    margin-top: 15px; /* Jarak lebih sedikit dari tombol di atasnya */
    align-items: center;
    justify-content: center; /* Rata tengah horizontal */
    gap: 10px;
    background-color: #3498DB; /* Warna biru untuk email */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1em;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.email-btn img {
    width: 24px;
    height: 24px;
}
.email-btn:hover { background-color: #5DADE2; }

/* GALLERY */
.gallery-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 15px;
   margin-top: 20px;
}

.gallery-container figure {
    margin: 0; /* Reset margin figure */
    position: relative; /* Kunci untuk memposisikan caption di dalamnya */
    overflow: hidden; /* Sembunyikan bagian caption yang keluar */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-container figure:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.gallery-container img {
   width: 100%;
   height: 200px;
   object-fit: cover;
   display: block; /* Menghilangkan spasi ekstra di bawah gambar */
}

.gallery-container figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(rgba(18,140,126,0.8)); /* Background gradasi lebih gelap */
    color: white;
    text-align: center;
    padding: 10px 10px 10px;
    font-size: 0.9em;
}

/* LIGHTBOX GALLERY */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1002; /* Di atas segalanya */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* OVERLAY MOBILE MENU */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Warna hitam dengan transparansi */
    z-index: 999; /* Di bawah menu navigasi (z-index: 1000) */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Tombol Kembali ke Atas */
.to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1ABC9C;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s;
}

.to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Promo Popup */
.promo-popup {
    /* Posisi diatur oleh container */
    position: absolute;
    bottom: 0;
    right: 0;
    background: #203D43;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 320px;
    width: calc(100vw - 40px); /* Lebar popup di mobile */
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.promo-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.promo-popup p {
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: center;
    font-size: 14px;
}

.promo-popup a {
    font-size: 14px;
}

#closePromo {
    background: #DC4E4E;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#closePromo:hover {
    background: #c74242; /* A slightly darker shade of primary */
}

.popup-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.popup-link {
    color: #F8C674;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.popup-link:hover {
    color: white;
    text-decoration: underline;
}

/* Wadah untuk elemen fixed */
.fixed-elements-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Sembunyikan tombol ke atas saat popup promo muncul di mobile */
@media (max-width: 768px) {
    .promo-popup.show + .to-top-btn {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px; /* Menyesuaikan jarak untuk header mobile yang lebih tipis */
    }

    header {
        padding: 10px 0;
    }

    .logo h1 {
        font-size: 1.5em;
    }

    .tagline {
        font-size: 0.7em;
    }

    .hamburger-menu {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        max-width: 300px;
        height: 100vh;
        background: #1e3c72;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.3s ease-in-out;
        padding-top: 80px;
    }

    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    nav li {
        width: 100%;
        text-align: center;
    }

    nav a {
        display: block;
        padding: 10px 10px;
        margin: 0 20px;
        font-size: 1.2em;
        background: #2a5298;
        border-radius: 10px;
        color: white;
        text-decoration: none;
        transition: background 0.3s;
    }

    nav a:hover {
        background: #356ac4;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hero-content h2 {
        font-size: 1.8em;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

/* FOOTER */
footer {
    background-color: #29A399;
    color: white;
    text-align: center;
    padding: 25px;
    font-size: 0.8em;
    font-weight: 300;
}

footer a {
    color: white;
    text-decoration: none;
}

/* Tampilkan overlay saat menu aktif */
.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* MOBILE */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        /* justify-content: center; Dihapus agar item mulai dari atas */
        background: #16A085;
        position: fixed; /* Menggunakan fixed agar menutupi seluruh layar */
        top: 0;
        right: 0;
        height: 100vh; /* Tinggi 100% dari viewport */
        width: 250px; /* Sedikit lebih lebar */
        z-index: 1000; /* Memastikan menu di atas elemen lain */
        transform: translateX(100%); /* Sembunyikan di luar layar kanan */
        transition: transform 0.3s ease-in-out; /* Animasi slide */
        padding-top: 40px; /* Memberi ruang di bagian atas menu */
    }

    /* Tampilkan logo di menu mobile */
    .mobile-nav-logo {
        display: block;
        margin-bottom: 30px; /* Jarak antara logo dan menu 'Beranda' */
        margin-top: 0; /* Reset margin atas */
    }

    .mobile-nav-logo img {
        width: 50px; /* Ukuran logo dikecilkan */
        height: 50px;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        margin: 0 20px;
        background-color: #0c6351;
        color: white;
        text-decoration: none;
        font-weight: 300;
        border-radius: 25px;
        transition: background-color 0.3s ease-in-out
    }

    nav ul li:last-child {
        margin-top: 25px; /* Memberi sedikit jarak dari menu 'Kontak' */
        display: block; /* Tampilkan kembali tombol 'Tutup' di mobile */
    }

    /* Gaya khusus untuk tombol tutup (X) */
    nav ul li a.close-btn {
        background-color: transparent; /* Hapus latar belakang */
        border: 2px solid white; /* Tambahkan border putih tipis */
        color: white;
        width: 50px; /* Lebar tetap */
        height: 50px; /* Tinggi tetap */
        margin: 0 auto; /* Posisikan di tengah */
        padding: 0; /* Hapus padding */
        border-radius: 50%; /* Membuatnya bulat sempurna */
        font-size: 36px; /* Ukuran 'X' lebih besar */
        line-height: 48px; /* Pusatkan 'X' secara vertikal */
        font-weight: 300; /* Membuat 'X' menjadi tipis */
    }

    nav ul li a.close-btn:hover {
        background-color: rgba(255, 255, 255, 0.2); /* Efek hover */
    }

    nav ul.active {
        transform: translateX(0); /* Tampilkan dengan menggeser ke posisi semula */
    }

    .menu-toggle {
        display: block;
    }

    .slider {
        height: 240px;
    }

    .fasilitas-cards {
        grid-template-columns: 1fr; /* Ubah menjadi 1 kolom di mobile */
    }

    .fasilitas-item,
    .fasilitas-item:nth-child(even) {
        flex-direction: column;
        gap: 20px;
    }

    .fasilitas-item img {
        width: 100%;
    }

    .gallery-container img {
        height: 250px; /* Membuat gambar galeri lebih tinggi di mobile */
    }

    .persyaratan-container {
        flex-direction: column;
    }

    .voucher {
        flex-direction: column;
    }
    .voucher-rip {
        flex-basis: auto;
        border-left: none;
        border-top: 2px dashed rgba(255,255,255,0.5);
        padding-top: 15px;
        margin: 0 20px;
    }
    .voucher::before, .voucher::after {
        /* Sesuaikan posisi sobekan untuk mobile */
        background-color: #EAF9F6; /* Warna background body */
        top: calc(100% - 75px - 15px); /* (tinggi total - tinggi rip - setengah lingkaran) */
        left: -15px;
    }
    .voucher::after {
        left: auto;
        right: -15px;
    }

    .fixed-elements-container {
        width: calc(100% - 40px);
    }

    /* CONTACT PAGE MOBILE */
    .contact-layout {
        flex-direction: column-reverse; /* Peta di atas, info di bawah */
        gap: 20px; /* Kurangi jarak antara peta dan info box di mobile */
    }

    .map-container {
        min-height: 350px; /* Kembalikan tinggi peta di mobile */
    }
}

/* ABOUT PAGE STYLES */
#about-page .content {
    max-width: 960px; /* Lebarkan sedikit kontainer untuk layout yang lebih baik */
}

#about-page .subtitle {
    font-style: italic;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.about-container {
    text-align: left;
}

.about-header {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* Rata atas */
    margin-bottom: 50px;
}

.ceo-profile {
    flex-shrink: 0; /* Mencegah gambar menyusut */
    text-align: center;
    width: 250px; /* Dilebarkan agar nama tidak terpotong di desktop */
}

.ceo-profile img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 5px solid white;
}

.ceo-profile h3 {
    color: #333;
    margin-bottom: 5px;
}

.ceo-profile .ceo-title {
    color: #1ABC9C;
    font-weight: 500;
}

.welcome-text {
    padding-top: 10px; /* Sedikit padding agar sejajar dengan teks di foto */
    line-height: 1.8;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid #ddd;
    padding-top: 40px;
}

.about-box h3 {
    color: #1ABC9C;
    margin-bottom: 15px;
}

.about-box h3 span {
    color: #34495E;
    font-weight: 600;
}

/* ABOUT PAGE MOBILE */
@media (max-width: 768px) {
    .about-header {
        flex-direction: column;
        align-items: center; /* Pusatkan item di mobile */
        gap: 20px;
        text-align: center;
    }

    .ceo-profile {
        width: 90%; /* Gunakan persentase agar lebih fleksibel */
        max-width: 280px; /* Batasi lebar maksimum agar tidak terlalu besar di tablet */
    }

    .welcome-text {
        padding-top: 0;
        text-align: justify;
    }

    .about-details {
        grid-template-columns: 1fr; /* Satu kolom di mobile */
        gap: 40px;
    }
}

/* PERSYARATAN PAGE - NEW DESIGN */
#persyaratan-page .content {
    max-width: 1000px;
}

.persyaratan-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dua kolom sama besar untuk box di bawah */
    gap: 40px;
    align-items: stretch; /* Membuat item grid memiliki tinggi yang sama */
    margin-top: 40px;
    text-align: left;
}

.persyaratan-image-container {
    grid-column: 1 / -1; /* Membuat gambar melintasi semua kolom (posisi di atas) */
    display: flex; /* Aktifkan flexbox */
    justify-content: center; /* Pusatkan item di dalamnya (gambar) secara horizontal */
}

.persyaratan-image-container img {
    width: 50%; /* Atur lebar gambar menjadi 50% dari kontainer */
    height: auto; /* Biarkan tinggi menyesuaikan secara otomatis agar proporsional */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.persyaratan-box, .investasi-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    display: flex; /* Aktifkan flexbox */
    flex-direction: column; /* Susun konten secara vertikal */
    justify-content: space-between; /* Dorong tombol ke bawah */
    text-align: center; /* Menengahkan tombol di dalamnya */
}

.persyaratan-box h3, .investasi-box h3 {
    color: #1ABC9C;
    margin-bottom: 5px; /* Mengurangi jarak ke paragraf di bawahnya */
}

.persyaratan-box p, .investasi-box p {
    margin-bottom: 20px;
    color: #555;
}

.persyaratan-box ol {
    padding-left: 20px; /* Memberi ruang untuk nomor */
    text-align: left; /* Mengembalikan perataan ke kiri */
}

.persyaratan-box ol li {
    margin-bottom: 15px;
    font-size: 1em; /* Menyamakan ukuran font dengan paragraf */
}

.persyaratan-details ul, .investasi-box ul {
    list-style: none;
    text-align: left; /* Pastikan list tetap rata kiri */
    padding: 0;
}

.persyaratan-details ul li {
    font-size: 1.05em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.investasi-box .biaya-item {
    display: flex; /* Menambahkan display flex */
    align-items: center; /* Menyelaraskan item secara vertikal */
    flex-wrap: wrap; /* Izinkan item untuk wrap ke baris baru jika perlu */
}

.investasi-box .biaya-item::before {
    content: '•'; /* Karakter bulatan */
    color: #1ABC9C; /* Warna yang serasi dengan tema */
    font-size: 1.2em; /* Ukuran bulatan */
    margin-right: 10px; /* Jarak antara bulatan dan teks */
}

.investasi-box ul {
    font-size: 1em; /* Menyamakan ukuran font dengan paragraf */
}

.biaya-text {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    align-items: center;
}

.biaya-text strong {
    color: #1ABC9C;
}

.angsuran-info {
    margin-left: 5px; /* Memberi sedikit jarak dari teks utama */
    font-size: 0.9em;
    color: #777;
}

/* PERSYARATAN PAGE MOBILE */
@media (max-width: 768px) {
    .persyaratan-layout {
        grid-template-columns: 1fr; /* Tumpuk di mobile */
    }
}

.persyaratan-cta-container {
    grid-column: 1 / -1; /* Membuat kontainer ini melintasi semua kolom */
    text-align: center; /* Memusatkan tombol di dalamnya */
    margin-top: 20px; 
}

/* FORM PENDAFTARAN */
.registration-form {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    margin-top: 40px;
    text-align: left;
}

.registration-form fieldset {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.registration-form legend {
    padding: 0 10px;
    font-weight: 600;
    color: #1ABC9C;
    font-size: 1.2em;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.registration-form label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.95em;
}

.registration-form input[type="text"],
.registration-form input[type="date"],
.registration-form input[type="number"],
.registration-form input[type="email"],
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    outline: none;
    border-color: #1ABC9C;
}

.gender-options {
    display: flex;
    gap: 20px;
    align-items: center;
}

.gender-options label {
    font-weight: 400; /* Normal weight for radio button labels */
}

.submit-container {
    text-align: center; /* Pusatkan tombol di dalam container */
    margin-top: 10px;
}

.submit-btn {
    display: inline-flex; /* Ubah dari block ke inline-flex */
    align-items: center;
    justify-content: center;
    gap: 10px; /* Jarak antara ikon dan teks */
    width: auto; /* Agar lebar tombol menyesuaikan konten */
    padding: 12px 25px; /* Sesuaikan padding */
    background-color: #128C7E; /* Samakan dengan warna whatsapp-btn */
    color: white;
    border: none;
    border-radius: 50px; /* Buat lebih bulat */
    font-size: 0,8em;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.submit-btn img {
    width: 24px;
    height: 24px;
}

.submit-btn:hover {
    background-color: #16a085;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* CHECKBOX GROUP PADA FORM */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px; /* Jarak antar checkbox */
}

.checkbox-group label {
    margin-bottom: 0; /* Reset margin bawaan dari .form-group label */
    font-weight: 400; /* Samakan dengan label radio button */
}

/* Voucher di halaman pendaftaran */
.voucher-container-small {
    /* transform: scale(0.9) dihapus untuk menghindari konflik animasi */
    margin-bottom: 20px; /* Sesuaikan jarak ke form di bawahnya */
    margin-top: 0; /* Sesuaikan jarak dari subtitle di atasnya */
}
}