/* ================= FAQ================= */

        .header {
            margin-top: 20px;
            text-align: center;
            padding: 50px 20px 30px;
        }

        .header h1 {
            font-size: 2.3rem;
            color: var(--blue);
            margin-bottom: 8px;
        }

        .container {
            max-width: 1100px;
            margin: auto;
            padding: 0 20px 50px;
        }

        /* PERUBAHAN STRUKTUR DISINI */
        .faq-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Dua kolom utama */
            gap: 20px;
            align-items: start;
        }

        .faq-column {
            display: flex;
            flex-direction: column;
            gap: 20px; /* Jarak antar FAQ dalam satu kolom */
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            overflow: hidden;
            height: fit-content; /* Pastikan tinggi hanya sebatas konten */
        }

        .faq-question {
            padding: 18px 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            cursor: pointer;
            user-select: none;
        }

        .faq-question span {
            font-size: 20px;
            color: var(--blue);
            transition: 0.3s;
        }

        .faq-answer {
            background: var(--light-blue);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer p {
            padding: 18px 22px;
            margin: 0;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 500px; 
        }

        .faq-item.active .faq-question span {
            transform: rotate(45deg);
        }

        .cta {
            margin-top: 60px;
            background: white;
            border-radius: 20px;
            padding: 35px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        }

        .cta button {
            background: var(--blue);
            color: white;
            border: none;
            padding: 14px 28px;
            font-size: 1rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 700;
        }

@media (max-width: 750px) {
    .faq-wrapper { grid-template-columns: 1fr; }
    .cta { flex-direction: column; text-align: center; gap: 20px; }
    }