		
            .section {
            padding: 0;
            margin: 0;
            }
            .section-title {
            text-align: center;
            margin-bottom: 1rem;
            }
            .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary-color-3);
            position: relative;
            display: inline-block;
            }
            .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
            }
            .section-title p {
            font-size: 1.1rem;
            color: var(--text-color);
            max-width: 700px;
            margin: 1rem auto 0;
            }
            .btn-accent {
            background-color: var(--accent-color);
            color: var(--light-text-color);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(236, 178, 31, 0.3);
            transition: background 0.3s ease;
            display: inline-block;
            }
            .btn-accent:hover {
            background-color: #d6a012;
            }
            .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            }
            .faq-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin: 1.5rem 0;
            justify-content: center;
            position: relative;
            z-index: 10;
            }
            .category-btn {
            background-color: var(--light-background-color);
            border: 2px solid var(--primary-color-2);
            color: var(--primary-color-1);
            padding: 0.5rem 1.25rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            white-space: nowrap;
            }
            .category-btn.active {
            background-color: var(--primary-color-2);
            color: var(--light-text-color);
            }
            .category-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }
            .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            }
            .faq-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin: 1.5rem 0;
            justify-content: center;
            position: relative;
            z-index: 10;
            }
            .category-btn {
            background-color: var(--light-background-color);
            border: 2px solid var(--primary-color-2);
            color: var(--primary-color-1);
            padding: 0.5rem 1.25rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            white-space: nowrap;
            }
            .category-btn.active {
            background-color: var(--primary-color-2);
            color: var(--light-text-color);
            }
            .category-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }
            .faq-category {
            display: none;
            margin-bottom: 2rem;
            }
            .faq-category.active {
            display: block;
            }
            .faq-item {
            background-color: var(--background-color);
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            }
            .faq-item.visible {
            opacity: 1;
            transform: translateY(0);
            }
            .faq-question {
            padding: 1.25rem;
            background: var(--primary-color-2);
            color: var(--light-text-color);
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.3s ease;
            }
            .faq-question:hover {
            background: var(--primary-color-1);
            }
            .faq-icon {
            transition: transform 0.3s ease;
            }
            .faq-question.active .faq-icon {
            transform: rotate(180deg);
            }
            .faq-answer {
            max-height: 0;
            overflow: hidden;
            background: var(--background-color);
            padding: 0 1.25rem;
            transition: all 0.4s ease;
            color: var(--text-color);
            }
            .faq-answer.active {
            padding: 1.25rem;
            max-height: 300px;
            }
            .faq-category-title {
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--primary-color-1);
            font-size: 1.8rem;
            }
            
            /* Tombol Hubungi Kami */
            .contact-btn-container {
            text-align: center;
            margin-top: 3rem;
            padding: 0 1rem;
            }
            
            /* Header dengan background image */
            .faq-header {
            position: relative;
            width: 100%;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start; /* DIUBAH: Mengubah justify-content */
            text-align: center;
            overflow: hidden;
            padding: 150px 1rem 2rem;
            margin-top: calc(-1 * var(--header-height));
            }
            
            .faq-header-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 1;
            transition: filter 0.3s ease, opacity 0.3s ease;
            transform: scale(1.01);
            }
            
            .faq-header-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(29, 93, 133, var(--overlay-opacity)) 0%, rgba(20, 132, 199, calc(var(--overlay-opacity) - 0.1)) 100%);
            z-index: 2;
            transition: all 0.3s ease;
            }
            
            .faq-header-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0;
            margin-top: 80px; /* DIUBAH: Menambah margin-top yang lebih besar */
            }
            
            .faq-header-title {
            font-size: 2.5rem;
            color: var(--header-text-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
            position: relative; /* DIUBAH: Menambah position relative */
            top: 0px; /* DIUBAH: Menambah top untuk mendorong judul ke bawah, tadinya 30 ya*/
            }
            
                /* Garis bawah kuning untuk judul header */
            .faq-header-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
            }

            
            .faq-header-subtitle {
            font-size: 1.2rem;
            color: var(--header-subtitle-color);
            max-width: 700px;
            margin: 0 auto 1.5rem;
            }
            
            /* Responsive Design */
            
            
            /* Untuk tampilan tablet */
            @media (max-width: 992px) {
            .faq-header-title {
                font-size: 2.5rem;
                top: 30px;
                margin-bottom: 1.8rem; /* Tambah margin-bottom lebih besar */
            }
            .faq-header-title::after {
                bottom: -18px; /* Tambah jarak garis kuning dari judul */
            }
            .faq-header-subtitle {
                margin-top: 0.8rem; /* Tambah jarak dari garis kuning ke subtitle */
            }
            }

            @media (max-width: 768px) {
            .faq-header {
                min-height: 400px;
                padding: 140px 1rem 1.5rem;
            }
            .faq-categories {
                flex-wrap: wrap;
                gap: 0.5rem;
                margin: 1rem 0;
                max-width: 100%;
            }
            .category-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
                flex: 1 1 calc(50% - 0.5rem);
                max-width: calc(50% - 0.5rem);
            }
            .faq-header-title {
                font-size: 2.2rem;
                margin-bottom: 2rem; /*batas untuk garis kuning*/
                top: 20px; /* DIUBAH: Menyesuaikan top untuk mobile */
            }
            .faq-header-title::after {
            bottom: -15px; /* Tambah jarak untuk mobile */
            }
            .faq-header-subtitle {
                font-size: 1rem;
                margin-bottom: 0.3rem;
            }
            .faq-container {
                padding-top: 1.5rem;
            }
            .contact-btn-container {
                margin-top: 2rem;
            }
            }
            
            @media (max-width: 576px) {
            .faq-header {
                min-height: 380px;
                padding: 130px 0.5rem 1rem;
            }
            .faq-header-title {
                font-size: 2rem;
                margin-bottom: 0.6rem;
                top: 10px; /* DIUBAH: Menyesuaikan top untuk mobile kecil */
            }
            
                .faq-header-title::after {
                bottom: -10px; /* Tambah jarak untuk mobile kecil */
            }
            .faq-header-subtitle {
                font-size: 0.95rem;
                margin-bottom: 0.2rem;
            }
            .faq-categories {
                gap: 0.4rem;
                margin: 0.8rem 0;
                width: 100%;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: minmax(36px, auto);
            }
            .category-btn {
                padding: 0.35rem 0.7rem;
                font-size: 0.8rem;
                max-width: 100%;
            }
            .faq-category-title {
                font-size: 1.6rem;
            }
            .faq-question {
                padding: 1rem;
                font-size: 0.95rem;
            }
            .faq-answer {
                padding: 1rem;
                font-size: 0.9rem;
            }
            .contact-btn-container {
                margin-top: 1.5rem;
                padding: 0 0.5rem;
            }
            .btn-accent {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
                white-space: normal;
                text-align: center;
                line-height: 1.4;
            }
            }
            
            
            @media (max-width: 400px) {
            .faq-header {
                min-height: 360px;
                padding: 120px 0.5rem 0.8rem;
            }
            .faq-header-title {
                font-size: 1.8rem;
                margin-bottom: 0.5rem;
                top: 0; /* DIUBAH: Menghilangkan top untuk mobile sangat kecil */
            }
            .faq-header-title::after {
                bottom: -8px; /* Tambah jarak untuk layar sangat kecil */
            }
            .faq-header-subtitle {
                font-size: 0.9rem;
                margin-bottom: 0.1rem;
            }
            .faq-categories {
                gap: 0.3rem;
                margin: 0.5rem 0;
                width: 100%;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: minmax(32px, auto);
            }
            .category-btn {
                padding: 0.3rem 0.6rem;
                font-size: 0.75rem;
                max-width: 100%;
            }
            .faq-container {
                padding: 1rem 0.5rem;
            }
            .contact-btn-container {
                margin-top: 1rem;
                padding: 0 0.5rem;
            }
            .btn-accent {
                padding: 0.5rem 0.8rem;
                font-size: 0.85rem;
                white-space: normal;
                text-align: center;
                line-height: 1.3;
                max-width: 100%;
            }
            }
            
            
            /* Modal untuk menampilkan gambar */
            .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            overflow: auto;
            }
            
            .modal-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 900px;
            max-height: 80%;
            object-fit: contain;
            animation-name: zoom;
            animation-duration: 0.3s;
            }
            
            @keyframes zoom {
            from {transform: scale(0)} 
            to {transform: scale(1)}
            }
            
            .close-modal {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            }
            
            .close-modal:hover,
            .close-modal:focus {
            color: #bbb;
            text-decoration: none;
            }
            
            #caption {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            text-align: center;
            color: #ccc;
            padding: 10px 0;
            height: 150px;
            }
            
            @media only screen and (max-width: 700px){
            .modal-content {
                width: 100%;
            }
            }