/* ===================================================================
   Table of Contents
   1. Global Variables & Base Styles
   2. Hero Section
   3. Main Content Layout (Sidebar + Sections)
   4. Why Section
   5. FAQ Section
   6. Responsive Design
   7. Dark Mode
=================================================================== */

/* ===================================================================
   1. Global Variables & Base Styles
=================================================================== */
:root {
    --bnsp-primary: #0056b3; /* Biru Tua */
    --bnsp-secondary: #007bff; /* Biru Cerah */
    --bnsp-accent: #ffc107; /* Kuning Aksen */
    --bnsp-dark: #212529;
    --bnsp-light: #f8f9fa;
    --bnsp-white: #ffffff;
    --bnsp-purple: #775ba3;;
    --bnsp-font-sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#page-bnsp {
    font-family: var(--bnsp-font-sans);
    background-color: var(--bnsp-light);
    color: var(--bnsp-dark);
}

.container-bnsp {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-bnsp {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary-bnsp {
    background-color: var(--bnsp-accent);
    color: var(--bnsp-dark);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-primary-bnsp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
}

.btn-secondary-bnsp {
    background-color: transparent;
    color: var(--bnsp-white);
    border-color: var(--bnsp-white);
}

.btn-secondary-bnsp:hover {
    background-color: var(--bnsp-white);
    color: var(--bnsp-primary);
}

/* ===================================================================
   2. Hero Section
=================================================================== */
.hero-section-bnsp {
    background: linear-gradient(135deg, #775ba3, #c75d9d, #775ba3);
    color: var(--bnsp-white);
    padding: 100px 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.hero-section-bnsp .container-bnsp {
    display: flex;
    flex-direction: column;
}

.hero-grid-bnsp {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    flex-grow: 1;
}

.hero-content-bnsp {
    flex: 1.2;
    text-align: left;
    z-index: 2;
}

.hero-content-bnsp h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-highlight-text-bnsp {
    display: block;
    background: linear-gradient(90deg, var(--bnsp-accent), #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow-animation-bnsp 3s ease-in-out infinite;
}

@keyframes glow-animation-bnsp {
    0%, 100% { text-shadow: 0 0 5px #ffd700, 0 0 10px #ffd700; }
    50% { text-shadow: 0 0 15px #fff, 0 0 25px #ffd700; }
}

.hero-subtitle-bnsp {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-cta-buttons-bnsp {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper-bnsp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image-bnsp {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.hero-bottom-info-bnsp {
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
    padding: 30px 0 10px 0;
    background: none;
    backdrop-filter: none;
    border: none;
    flex-wrap: wrap;
}

.hero-info-item-bnsp {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--bnsp-white);
    opacity: 0.9;
}

.hero-info-item-bnsp img {
    height: 40px;
    width: auto;
}

.hero-avatars-bnsp {
    display: flex;
}

.hero-avatars-bnsp img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid var(--bnsp-white);
    margin-left: -15px;
}

.hero-avatars-bnsp img:first-child {
    margin-left: 0;
}


/* ===================================================================
   3. Main Content Layout (Sidebar + Sections)
=================================================================== */
/* (REVISI) Hapus max-width dan margin agar container utama bisa melebar */
.main-container-bnsp {
    display: flex;
    width: 90%; /* Menggunakan lebar persentase */
    margin: 60px auto;
    gap: 40px;
    max-width: 1200px; /* Batasan lebar tetap ada di sini */
}

.sidebar-bnsp {
    flex: 0 0 250px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    height: calc(100vh - 140px);
    overflow-y: auto;
}

.side-nav-bnsp ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-nav-bnsp a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--bnsp-dark);
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.side-nav-bnsp a.active,
.side-nav-bnsp a:hover {
    background-color: var(--bnsp-purple);
    color: var(--bnsp-white);
}

.content-bnsp {
    flex: 1;
    min-width: 0; /* Mencegah konten mendorong layout saat menyempit */
}

/* (REVISI) Hapus padding dari section utama */
.section-bnsp {
    padding: 60px 0; /* Padding vertikal tetap, horizontal dihapus */
    border-bottom: 1px solid #ddd;
}
/* (BARU) Wrapper konten di dalam setiap section untuk mengatur lebar */
.section-bnsp .container-bnsp {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
@media (max-width: 992px) {
    .sidebar-bnsp {
        display: none;
    }
}

/* ===================================================================
   4. Why Section
=================================================================== */
.why-heading-bnsp {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--bnsp-dark);
}

.why-carousel-wrapper-bnsp {
    position: relative;
}

.why-carousel-container-bnsp {
    display: flex;
    gap: 20px; /* Sedikit mengurangi jarak antar kartu */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 5px 20px 5px; /* Memberi sedikit ruang di awal dan akhir */
}

.why-carousel-container-bnsp::-webkit-scrollbar {
    display: none;
}

.why-card-bnsp {
    /* (REVISI) Ukuran kartu sedikit disesuaikan agar tidak terlalu besar */
    flex: 0 0 calc(33.333% - 14px); 
    min-width: 280px; 
    aspect-ratio: 4 / 3.2; /* Sedikit lebih tinggi agar tidak terlalu lebar */
    position: relative;
    border-radius: 5px 20px 5px 20px; 
    overflow: hidden;
    color: var(--bnsp-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card-bnsp:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-card-bg-bnsp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.why-card-content-bnsp {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(119, 91, 163, 0.95), transparent 70%);
}

.why-card-title-bnsp {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bnsp-accent);
    margin: 0 0 10px 0;
}

.why-card-subtitle-bnsp {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    color: var(--bnsp-white);
}

.why-carousel-nav-bnsp {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bnsp-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.why-carousel-nav-bnsp:hover {
    background-color: var(--bnsp-primary);
    color: var(--bnsp-white);
}

/* (REVISI) Posisi arrow disesuaikan agar pas di tepi */
.why-carousel-nav-bnsp.prev {
    left: -22.5px;
}

.why-carousel-nav-bnsp.next {
    right: -22.5px;
}

.why-progress-bar-container-bnsp {
    width: 25%;
    max-width: 300px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin: 30px auto 0 auto;
    overflow: hidden;
}

.why-progress-bar-bnsp {
    height: 100%;
    background-color: var(--bnsp-accent);
    border-radius: 3px;
    width: 0;
    transition: width 0.3s ease;
}

/* ===================================================================
   BARU: Sukses Section (Testimoni)
=================================================================== */

.sukses-heading-bnsp,
.sukses-subheading-bnsp {
    text-align: center;
    color: var(--bnsp-dark);
}

.sukses-heading-bnsp {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.sukses-subheading-bnsp {
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 400;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.sukses-carousel-wrapper-bnsp {
    position: relative;
}

.sukses-carousel-container-bnsp {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 5px; /* Padding agar shadow dan badge terlihat */
}

.sukses-carousel-container-bnsp::-webkit-scrollbar {
    display: none;
}

.sukses-card-bnsp {
    flex: 0 0 calc(33.333% - 17px);
    min-width: 320px;
    background-color: var(--bnsp-white);
    border-radius: 5px 20px 5px 20px;
    box-shadow: 0 8px 30px rgba(0, 86, 179, 0.1);
    position: relative;
    overflow: hidden; /* Penting untuk badge */
    display: flex;
    flex-direction: column;
}

.sukses-card-badge-bnsp {
    position: absolute;
    top: 15px; /* Sedikit geser ke bawah */
    right: 15px; /* Sesuaikan posisi */
    background-color: var(--bnsp-accent); /* Kuning */
    color: var(--bnsp-dark);
    padding: 6px 12px; /* Sesuaikan padding */
    font-size: 0.75rem; /* Ukuran font lebih kecil */
    font-weight: 700;
    border-radius: 8px; /* Bentuk membulat */
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    white-space: nowrap; /* Pastikan teks tidak patah */
}

.sukses-card-upskill-badge-bnsp {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA000 100%); /* Gradient kuning-orange */
    color: var(--bnsp-dark);
    padding: 8px 15px 8px 30px; /* Padding untuk efek pita */
    font-size: 0.7rem; /* Ukuran font lebih kecil */
    font-weight: 600;
    text-align: center;
    border-bottom-left-radius: 10px; /* Ujung kiri bawah melengkung */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 3; /* Pastikan di atas badge kelas */
    transform: translateY(-0px); /* Bisa disesuaikan untuk efek melayang */
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%); /* Bentuk pita */
}

.sukses-card-header-bnsp {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #e9f2ff; /* Warna biru muda untuk header */
    padding: 20px;
}

.sukses-card-avatar-bnsp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bnsp-white);
}

.sukses-card-info-bnsp {
    display: flex;
    flex-direction: column;
}

.sukses-card-nama-bnsp {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bnsp-dark);
}

.sukses-card-jabatan-bnsp {
    font-size: 0.85rem;
    color: var(--bnsp-dark);
    opacity: 0.7;
    margin-bottom: 5px;
}

.sukses-card-program-bnsp {
    font-size: 0.8rem;
    background-color: #d1e2ff;
    color: var(--bnsp-primary);
    padding: 4px 8px;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
}

.sukses-card-body-bnsp {
    padding: 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bnsp-dark);
    opacity: 0.9;
    flex-grow: 1; /* Membuat body mengisi sisa ruang */
}

/* Navigasi & Progress Bar (menggunakan gaya yang sama dengan Why Section) */
.sukses-carousel-nav-bnsp {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bnsp-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.sukses-carousel-nav-bnsp:hover {
    background-color: var(--bnsp-primary);
    color: var(--bnsp-white);
}

.sukses-carousel-nav-bnsp.prev {
    left: -22.5px;
}

.sukses-carousel-nav-bnsp.next {
    right: -22.5px;
}

.sukses-progress-bar-container-bnsp {
    width: 25%;
    max-width: 300px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin: 30px auto 0 auto;
    overflow: hidden;
}

.sukses-progress-bar-bnsp {
    height: 100%;
    background-color: var(--bnsp-accent);
    border-radius: 3px;
    width: 0;
    transition: width 0.3s ease;
}

.sukses-loading-bnsp {
    text-align: center;
    width: 100%;
    padding: 40px;
    color: var(--bnsp-dark);
    opacity: 0.8;
}

/* Dark Mode untuk Sukses Section */
html.dark-mode .sukses-card-upskill-badge-bnsp {
    color: #333; /* Pastikan teks tetap terlihat di dark mode */
}
html.dark-mode .sukses-heading-bnsp,
html.dark-mode .sukses-subheading-bnsp {
    color: var(--bnsp-light);
}
html.dark-mode .sukses-card-bnsp {
    background-color: #2a2734;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
html.dark-mode .sukses-card-header-bnsp {
    background-color: #1f1d29;
}
html.dark-mode .sukses-card-nama-bnsp,
html.dark-mode .sukses-card-jabatan-bnsp,
html.dark-mode .sukses-card-body-bnsp {
    color: var(--bnsp-light);
}
html.dark-mode .sukses-card-program-bnsp {
    background-color: #3a315a;
    color: #d9cffc;
}

/* Responsif untuk Sukses Section */
@media (max-width: 1024px) {
    .sukses-card-bnsp {
        flex-basis: calc(50% - 12.5px);
    }
}
@media (max-width: 768px) {
    /*
    .sukses-card-bnsp {
        flex-basis: 85%;
        min-width: 85%;
        scroll-snap-align: center; /* <-- Penyebab konflik 
    }
    .sukses-carousel-container-bnsp {
        scroll-snap-type: x mandatory; /* <-- Penyebab konflik 
    }
    .sukses-carousel-nav-bnsp {
        display: none;
    }
    */
}

/* ===================================================================
   BARU: Info Section
=================================================================== */
#info-section-bnsp { /* Ganti selector dari class ke ID agar lebih spesifik */
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.info-container-bnsp {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid; /* Menggunakan Grid Layout */
    grid-template-columns: 1.2fr 1fr; /* Definisikan 2 kolom dengan rasio */
    gap: 30px 60px; /* Jarak vertikal 30px, Jarak horizontal 60px */
    align-items: start; /* Sejajarkan semua item ke atas */
}

/* --- Wrapper untuk Judul (Kolom 1, Baris 1) --- */
.info-heading-wrapper-bnsp {
    grid-column: 1;
    grid-row: 1;
}

.info-heading-bnsp {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--bnsp-dark);
}

/* --- Wrapper untuk Paragraf (Span Kolom 1-2, Baris 2) --- */
.info-paragraph-wrapper-bnsp {
    grid-column: 1 / -1; /* Membentang dari kolom pertama hingga terakhir */
   
}

.info-paragraph-bnsp {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--bnsp-dark);
    opacity: 0.85;
    margin-bottom: 20px;
}

.info-paragraph-bnsp:last-child {
    margin-bottom: 0;
}

/* --- Sisi Kanan: Kartu Gambar (Kolom 2, Baris 1) --- */
.info-content-right-bnsp {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-card-bnsp {
    position: relative;
    padding: 12px;
    border-radius: 5px 20px 5px 20px;
    background-color: var(--bnsp-white);
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.1);
}

.info-card-bnsp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    background: conic-gradient(from var(--angle), #775ba3, #c75d9d, #ffc107, #775ba3);
    border-radius: 5px 20px 5px 20px;
    z-index: 1;
    animation: spin-gradient 6s linear infinite;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin-gradient {
    0% { --angle: 0deg; }
    100% { --angle: 360deg; }
}

.info-card-image-bnsp {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* --- Dark Mode --- */
html.dark-mode #info-section-bnsp {
    background-color: #1a1822;
}

html.dark-mode .info-heading-bnsp,
html.dark-mode .info-paragraph-bnsp {
    color: var(--bnsp-light);
}

html.dark-mode .info-card-bnsp {
    background-color: #2a2734;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* --- Responsif --- */
@media (max-width: 992px) {
    .info-container-bnsp {
        display: flex; /* Kembali ke flexbox untuk tumpukan vertikal */
        flex-direction: column;
        gap: 40px;
    }
    
    .info-heading-wrapper-bnsp,
    .info-paragraph-wrapper-bnsp {
        text-align: center; /* Pusatkan teks saat ditumpuk */
    }

    .info-content-right-bnsp {
        width: 80%;
        max-width: 400px;
        order: -1; /* Pindahkan gambar ke atas judul untuk mobile */
    }
}

@media (max-width: 768px) {
    .info-content-right-bnsp {
        width: 100%;
    }
}

/* ===================================================================
   BARU: Benefit Section
=================================================================== */
#benefit-section-bnsp {
    padding: 80px 0;
    background-color: var(--bnsp-white); /* Latar belakang putih bersih */
}

.benefit-grid-bnsp {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dua kolom dengan lebar sama */
    gap: 40px; /* Jarak antar kartu */
    margin-bottom: 50px; /* Jarak ke paragraf ringkasan di bawah */
}

.benefit-card-bnsp {
    background-color: #f8f9fa; /* Warna latar kartu sedikit abu-abu */
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animasi Hover */
.benefit-card-bnsp:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
}

.benefit-heading-bnsp {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bnsp-primary); /* Warna biru primer */
    margin-top: 0;
    margin-bottom: 25px;
}

.benefit-list-bnsp {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list-bnsp li {
    display: flex;
    align-items: flex-start; /* Sejajarkan ikon dengan awal teks */
    gap: 15px; /* Jarak antara ikon dan teks */
    margin-bottom: 18px;
    line-height: 1.7;
    color: var(--bnsp-dark);
}

.benefit-list-bnsp li:last-child {
    margin-bottom: 0;
}

.benefit-icon-bnsp {
    flex-shrink: 0; /* Mencegah ikon menyusut */
    width: 24px;
    height: 24px;
    fill: #28a745; /* Warna hijau untuk ikon centang */
    margin-top: 2px; /* Penyesuaian posisi vertikal ikon */
}

.benefit-list-bnsp li strong {
    color: var(--bnsp-dark);
}

.benefit-summary-bnsp {
    max-width: 800px; /* Batasi lebar agar mudah dibaca */
    margin: 0 auto; /* Pusatkan paragraf */
    text-align: center;
    line-height: 1.8;
    color: var(--bnsp-dark);
    opacity: 0.9;
}

/* --- Dark Mode --- */
html.dark-mode #benefit-section-bnsp {
    background-color: #1a1822;
    border-top: 1px solid #333; /* Beri pemisah di dark mode */
}

html.dark-mode .benefit-card-bnsp {
    background-color: #2a2734;
    border-color: #444;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

html.dark-mode .benefit-card-bnsp:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

html.dark-mode .benefit-list-bnsp li,
html.dark-mode .benefit-list-bnsp li strong,
html.dark-mode .benefit-summary-bnsp {
    color: var(--bnsp-light);
}

/* --- Responsif --- */
@media (max-width: 992px) {
    .benefit-grid-bnsp {
        grid-template-columns: 1fr; /* Tumpuk kartu menjadi satu kolom */
        gap: 30px;
    }
}

/* ===================================================================
   BARU: Fasilitas Section
=================================================================== */
#fasilitas-section-bnsp {
    padding: 80px 0;
    background-color: #f0f0f0; /* Biru gelap sesuai referensi */
    color: var(--bnsp-white);
}

.fasilitas-heading-bnsp {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 50px;
}

.fasilitas-grid-bnsp {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom di desktop */
    gap: 25px; /* Jarak antar item */
}

.fasilitas-item-bnsp {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bnsp-white);
    color: var(--bnsp-dark);
    padding: 15px 20px;
    border-radius: 50px; /* Membuat bentuk pil */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animasi Hover */
.fasilitas-item-bnsp:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fasilitas-icon-bnsp {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    background-color: #e9f2ff; /* Latar belakang biru muda untuk ikon */
    border-radius: 50%; /* Membuat lingkaran */
}

.fasilitas-text-bnsp {
    font-weight: 600;
    font-size: 0.95rem;
}

/* --- Dark Mode --- */
html.dark-mode #fasilitas-section-bnsp {
    background-color: #121f3a; /* Sedikit lebih gelap */
}

html.dark-mode .fasilitas-item-bnsp {
    background-color: #2a3b5e;
    color: var(--bnsp-light);
    box-shadow: none;
}

html.dark-mode .fasilitas-icon-bnsp {
    background-color: #1a2a4a;
}


/* --- Responsif --- */
@media (max-width: 768px) {
    .fasilitas-grid-bnsp {
        grid-template-columns: 1fr; /* Tumpuk menjadi 1 kolom di mobile */
    }
}

/* ===================================================================
   BARU: Kurikulum Section
=================================================================== */
#kurikulum-section-bnsp {
    padding: 80px 0;
    background-color: #f8f9fa; /* Latar belakang terang */
}

.kurikulum-heading-bnsp {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--bnsp-dark) !important;
    margin-top: 0;
    margin-bottom: 15px;
}
.kurikulum-subtitle-bnsp {
    text-align: center;
    font-size: 1.1rem;
    color: var(--bnsp-dark);
    opacity: 0.8;
    margin-top: 0;
    margin-bottom: 50px;
}

.kurikulum-accordions-grid-bnsp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.kurikulum-accordion-item-bnsp {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden; /* Penting untuk animasi max-height */
}

.kurikulum-accordion-button-bnsp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background-color: var(--bnsp-white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bnsp-dark);
}

.kurikulum-accordion-icon-bnsp {
    position: relative;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.kurikulum-accordion-icon-bnsp::before,
.kurikulum-accordion-icon-bnsp::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--bnsp-primary);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.kurikulum-accordion-icon-bnsp::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Animasi ikon + menjadi - */
.kurikulum-accordion-item-bnsp.active .kurikulum-accordion-icon-bnsp::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.kurikulum-accordion-content-bnsp {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--bnsp-white);
}

.kurikulum-list-bnsp {
    list-style: none;
    padding: 0 20px 20px 20px;
    margin: 0;
}

.kurikulum-list-bnsp li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--bnsp-dark);
}

.kurikulum-list-icon-bnsp {
    flex-shrink: 0; /* Tambahkan baris ini */
    width: 20px;
    height: 20px;
    fill: var(--bnsp-accent); /* Warna kuning aksen */
}
.kurikulum-tools-wrapper-bnsp {
    padding: 30px 0; /* Tambahkan padding agar tidak terlalu mepet */
    background-color: #e9ecef00; /* Latar belakang untuk wrapper tools */
    border-radius: 15px;
    overflow: hidden; /* Penting untuk carousel */
}

.kurikulum-tools-header-bnsp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.kurikulum-tools-title-bnsp {
    text-align: left; /* Sesuaikan agar rata kiri */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bnsp-dark);
    margin-bottom: 0; /* Hapus margin bawah default */
}

/* Navigasi Carousel untuk Tools */
.kurikulum-tools-carousel-nav-bnsp button {
    background-color: var(--bnsp-primary);
    color: var(--bnsp-white);
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.kurikulum-tools-carousel-nav-bnsp button:hover {
    background-color: #0056b3; /* Warna hover yang lebih gelap */
}


.kurikulum-tools-carousel-container-bnsp {
    display: flex;
    flex-shrink: 0; /* PENTING: Mencegah blok menyusut */
    gap: 25px; /* Tetap pertahankan jarak antar gambar */
    animation: marquee-bnsp 6s linear infinite; /* Terapkan animasi (atur durasi sesuai selera) */

}

/* Sembunyikan scrollbar untuk Webkit (Chrome, Safari) */
.kurikulum-tools-carousel-container-bnsp::-webkit-scrollbar {
    display: none;
}

.kurikulum-tool-card-bnsp {
    flex-shrink: 0; /* Penting: mencegah gambar mengecil */
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8); /* Latar belakang putih semi-transparan */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start; /* Snap ke awal kartu */
}

.kurikulum-tool-card-bnsp:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.1);
}

.kurikulum-tool-card-bnsp img {
    display: block;
    height: 60px; /* Ukuran gambar yang lebih besar */
    width: auto;
}

.kurikulum-tool-card-bnsp:hover img {
    filter: grayscale(0%); /* Warna asli saat hover */
}

/* --- Dark Mode untuk Tools Section --- */
html.dark-mode .kurikulum-tools-wrapper-bnsp {
    background-color: #2a2734; /* Latar belakang gelap untuk wrapper tools */
}

html.dark-mode .kurikulum-tools-title-bnsp {
    color: var(--bnsp-light);
}

html.dark-mode .kurikulum-tools-carousel-nav-bnsp button {
    background-color: var(--bnsp-secondary-dark);
    color: var(--bnsp-white);
}

html.dark-mode .kurikulum-tools-carousel-nav-bnsp button:hover {
    background-color: var(--bnsp-primary);
}

html.dark-mode .kurikulum-tool-card-bnsp {
    background-color: rgba(42, 39, 52, 0.8); /* Latar belakang gelap semi-transparan */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

html.dark-mode .kurikulum-tool-card-bnsp:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
@keyframes marquee-bnsp {
  from {
    transform: translateX(0);
  }
  to {
    /* Bergerak ke kiri sejauh setengah dari total lebar (karena ada 2 set logo) */
    transform: translateX(-100%);
  }
}
/* --- Responsif untuk Tools Section --- */
@media (max-width: 768px) {
    .kurikulum-tools-header-bnsp {
        flex-direction: column; /* Tumpuk judul dan navigasi */
        gap: 20px;
        margin-bottom: 25px;
    }
    .kurikulum-tools-title-bnsp {
        text-align: center;
    }
    .kurikulum-accordions-grid-bnsp {
        grid-template-columns: 1fr; /* Mengubah grid menjadi satu kolom */
    }
}

/* ===================================================================
   BARU: Pemateri Section
=================================================================== */
#pemateri-section-bnsp {
    padding: 80px 0;
    background-color: var(--bnsp-white);
}

.pemateri-heading-bnsp {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--bnsp-dark);
}

.pemateri-carousel-wrapper-bnsp {
    position: relative;
    /* REVISI: Sembunyikan kartu di sampingnya */
    overflow: hidden;
}

.pemateri-carousel-container-bnsp {
    display: flex;
    gap: 25px;
    /* REVISI: Tambahkan padding agar kartu di tepi tidak terpotong saat di tengah */
    padding: 20px 40vw;
    /* REVISI: Tambahkan transisi untuk animasi slide yang halus */
    transition: transform 0.6s ease-in-out;
}

.pemateri-carousel-container-bnsp::-webkit-scrollbar {
    display: none;
}

.pemateri-card-bnsp {
    flex: 0 0 280px; /* REVISI: Beri lebar tetap untuk kartu */
    min-width: 280px;
    aspect-ratio: 3 / 4;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    color: var(--bnsp-white);
    /* REVISI: Tambahkan transisi untuk animasi scale dan shadow */
    transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.6s ease;
    /* REVISI: Atur keadaan default (non-aktif) */
    transform: scale(0.9);
    opacity: 0.7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* REVISI: Styling untuk kartu yang sedang aktif (di tengah) */
.pemateri-card-bnsp.active {
    transform: scale(1);
    opacity: 1;
    /* REVISI: Efek shadow tipis yang estetik */
    box-shadow: 0 10px 35px rgba(119, 91, 163, 0.25);
}

.pemateri-card-bg-bnsp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.pemateri-card-bnsp::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(80, 57, 128, 0.95), transparent);
    z-index: 2;
}

.pemateri-card-content-bnsp {
    position: relative;
    z-index: 3;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.pemateri-nama-bnsp {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.pemateri-info-bnsp {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

/* Navigasi & Loading */
.pemateri-carousel-nav-bnsp {
    position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255, 255, 255, 0.9); border: none; border-radius: 50%; width: 45px; height: 45px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--bnsp-primary); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.pemateri-carousel-nav-bnsp:hover { background-color: var(--bnsp-primary); color: var(--bnsp-white); }
/* REVISI: Posisikan ulang tombol navigasi agar lebih pas */
.pemateri-carousel-nav-bnsp.prev { left: calc(50% - 200px); }
.pemateri-carousel-nav-bnsp.next { right: calc(50% - 200px); }
.pemateri-loading-bnsp { text-align: center; width: 100%; padding: 40px; color: var(--bnsp-dark); }

/* Dark Mode */
html.dark-mode #pemateri-section-bnsp { background-color: #1a1822; }
html.dark-mode .pemateri-heading-bnsp,
html.dark-mode .pemateri-loading-bnsp { color: var(--bnsp-light); }
html.dark-mode .pemateri-card-bnsp.active { box-shadow: 0 10px 35px rgba(119, 91, 163, 0.2); }

/* Responsif */
@media (max-width: 768px) {
    .pemateri-carousel-container-bnsp { padding: 20px 25vw; }
    .pemateri-carousel-nav-bnsp.prev { left: 10px; }
    .pemateri-carousel-nav-bnsp.next { right: 10px; }
}

/* ===================================================================
   BARU: Program Section
=================================================================== */
#program-section-bnsp {
    padding: 80px 0;
    background-color: #f0f2f5; 
}

.program-heading-bnsp {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--bnsp-dark);
}

.program-carousel-wrapper-bnsp {
    position: relative;
    overflow: hidden; /* REVISI: HAPUS BARIS INI */
    max-width: 450px;
    margin: 0 auto;
}

.program-carousel-container-bnsp {
    display: flex;
    padding: 20px 0;
    transition: transform 0.6s ease-in-out;
}

.program-carousel-container-bnsp::-webkit-scrollbar {
    display: none;
}

.program-card-bnsp {
    flex: 0 0 100%;
    min-width: 100%;
    background-color: var(--bnsp-white);
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 30px rgba(0, 86, 179, 0.08);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

@media (min-width: 769px) {
    .program-card-bnsp {
        transform: scale(0.85);
        opacity: 0.7;
    }

    .program-card-bnsp.active {
        transform: scale(1);
        opacity: 1;
    }
}

.program-card-header-bnsp {
    background-color: var(--bnsp-purple);
    color: var(--bnsp-white);
    padding: 25px;
    margin: -25px -25px 0 -25px; /* Trik agar menempel di tepi atas kartu */
    border-radius: 20px 20px 0 0;
}
.program-badge-bnsp {
    background-color: rgba(144, 144, 144, 0.677); /* Latar semi-transparan */
    color: var(--bnsp-white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 15px; /* Jarak ke title */
}

.program-title-bnsp {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--bnsp-white);
    line-height: 1.2;
}

.program-price-section-bnsp {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
.program-price-label-bnsp {
    font-size: 0.8rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.program-price-normal-bnsp {
    font-size: 1.2rem;
    color: #dc3545;
    text-decoration: line-through;
}
.program-price-coret-bnsp {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bnsp-dark);
}
.program-price-bundling-bnsp {
    background-color: #fffbe6;
    border: 1px solid #ffe58f;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
}
.program-price-earlybird-bnsp {
    font-weight: 700;
    color: #dc3545;
}

/* REVISI: Styling untuk Toggle Benefit */
.program-benefit-toggle-wrapper-bnsp {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.program-benefit-toggle-button-bnsp {
    background: none;
    border: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bnsp-dark);
}

.program-benefit-toggle-icon-bnsp {
    width: 24px;
    height: 24px;
    fill: var(--bnsp-primary);
    transition: transform 0.3s ease;
}

.program-benefit-toggle-wrapper-bnsp.active .program-benefit-toggle-icon-bnsp {
    transform: rotate(180deg);
}

.program-benefit-list-container-bnsp {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.program-benefit-toggle-wrapper-bnsp.active .program-benefit-list-container-bnsp {
    max-height: 500px; /* Atur ketinggian maksimum yang cukup untuk semua item */
    transition: max-height 0.6s ease-in;
}

.program-benefit-list-bnsp {
    list-style: none;
    padding: 15px 0 0 0; /* Beri jarak dari tombol */
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.program-benefit-list-bnsp li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.program-benefit-icon-bnsp {
    width: 20px;
    height: 20px;
    fill: #28a745;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Styling untuk tombol */
.program-cta-buttons-bnsp {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.program-btn-bnsp {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.program-btn-bnsp:hover {
    transform: scale(1.03);
}

.program-btn-primary-bnsp {
    background-color: var(--bnsp-accent);
    color: var(--bnsp-dark);
}
.program-btn-secondary-bnsp {
    background-color: var(--bnsp-dark);
    color: var(--bnsp-white);
}

/* Navigasi & Loading */
.program-carousel-nav-bnsp {
    position: absolute; top: 50%; transform: translateY(-50%); background-color: rgba(255, 255, 255, 0.9); border: none; border-radius: 50%; width: 45px; height: 45px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--bnsp-primary); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.program-carousel-nav-bnsp:hover { background-color: var(--bnsp-primary); color: var(--bnsp-white); }
.program-carousel-nav-bnsp.prev { left: 10x; }
.program-carousel-nav-bnsp.next { right: 10px; }
.program-loading-bnsp { text-align: center; width: 100%; padding: 40px; color: var(--bnsp-dark); }


/* --- Dark Mode --- */
html.dark-mode #program-section-bnsp { background-color: #1a1822; }
html.dark-mode .program-heading-bnsp { color: var(--bnsp-light); }
html.dark-mode .program-card-bnsp { background-color: #2a2734; border-color: #444; }
html.dark-mode .program-title-bnsp, html.dark-mode .program-price-coret-bnsp { color: var(--bnsp-light); }
html.dark-mode .program-badge-bnsp { background-color: #3a315a; color: #d9cffc; }
html.dark-mode .program-price-section-bnsp, html.dark-mode .program-benefit-toggle-wrapper-bnsp { border-color: #444; }
html.dark-mode .program-price-bundling-bnsp { background-color: #3d341b; border-color: #a38b39; }
html.dark-mode .program-benefit-toggle-button-bnsp { color: var(--bnsp-light); }
html.dark-mode .program-benefit-list-bnsp li { color: var(--bnsp-light); }
html.dark-mode .program-btn-secondary-bnsp { background-color: #775ba3; }

/* --- Responsif --- */
@media (max-width: 768px) {
    .program-carousel-wrapper-bnsp {
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .program-carousel-nav-bnsp { width: 40px; height: 40px; }
    .program-carousel-nav-bnsp.prev { left: -10px; }
    .program-carousel-nav-bnsp.next { right: -10px; }
}
/* ===================================================================
   KODE LENGKAP: FAQ Section
=================================================================== */
#faq-section-bnsp { /* Menggunakan ID agar lebih spesifik */
    padding: 80px 0;
    background-color: var(--bnsp-white);
}

#faq-section-bnsp h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--bnsp-dark);
}

.faq-accordion-bnsp {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.faq-item-bnsp {
    border-bottom: 1px solid #e0e0e0;
}

.faq-header-bnsp {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    text-align: left;
}

.faq-header-bnsp span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bnsp-dark);
}

.faq-icon-bnsp {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bnsp-secondary);
    transition: transform 0.3s ease;
}

.faq-item-bnsp.active .faq-icon-bnsp {
    transform: rotate(45deg);
}

.faq-content-bnsp {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content-bnsp p {
    padding: 0 0 20px 0;
    line-height: 1.7;
    color: var(--bnsp-dark);
    opacity: 0.9;
}

.faq-cta-bnsp {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* --- Dark Mode untuk FAQ --- */
html.dark-mode #faq-section-bnsp {
    background-color: var(--bnsp-dark);
}

html.dark-mode #faq-section-bnsp h2,
html.dark-mode .faq-header-bnsp span {
    color: var(--bnsp-light);
}

html.dark-mode .faq-content-bnsp p {
    color: var(--bnsp-light);
    opacity: 0.8;
}

html.dark-mode .faq-item-bnsp {
    border-bottom-color: #444;
}

/* ===================================================================
   #. MINOL
=================================================================== */
.whatsapp-chat-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-chat-button img {
    width: 120px; /* Ukuran default untuk desktop */
    height: auto;
    /*border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
}

.whatsapp-chat-button:hover {
    transform: scale(1.1);
    /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); */
}

/* Responsif untuk tampilan mobile */
@media (max-width: 768px) {
    .whatsapp-chat-button {
        right: 15px;
        bottom: 25px;
    }
    .whatsapp-chat-button img {
        width: 50px; /* Ukuran yang lebih kecil untuk mobile */
    }
}

/* ===================================================================
   7. DARK MODE STYLES
=================================================================== */
html.dark-mode #page-bnsp {
    background-color: #1a1822;
    color: var(--bnsp-light);
}

html.dark-mode .btn-secondary-bnsp {
    color: var(--bnsp-light);
    border-color: var(--bnsp-light);
}

html.dark-mode .btn-secondary-bnsp:hover {
    background-color: var(--bnsp-light);
    color: var(--bnsp-primary);
}

html.dark-mode .side-nav-bnsp a {
    color: var(--bnsp-light);
}

html.dark-mode .side-nav-bnsp a.active,
html.dark-mode .side-nav-bnsp a:hover {
    background-color: #775ba3;
    color: var(--bnsp-white);
}

html.dark-mode .section-bnsp {
    border-bottom-color: #333;
}
html.dark-mode .content-bnsp h2 {
    color: var(--bnsp-light);
}
html.dark-mode .why-heading-bnsp {
    color: var(--bnsp-light);
}