 body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
        }
        
        /* Style untuk teks Bahasa Indonesia */
        .lang-id {
            display: block;
            font-size: 0.85em;
            color: #8895a1;
            font-style: italic;
            font-weight: 400;
            margin-top: 5px;
        } 

        /* Header Halaman */
        .page-header {
            background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 47, 96, 0.8)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=1932&auto=format&fit=crop') no-repeat center center;
            background-size: cover;
            padding: 5rem 0;
            text-align: center;
            color: white;
        }
        .page-header h1 {
            font-weight: 700;
        }

        /* Konten Utama */
        .terms-section {
            padding: 80px 0;
        }

        /* Kotak Info */
        .info-box {
            background-color: #e9f7fe;
            border-left: 5px solid #0dcaf0;
            padding: 25px;
            margin-bottom: 40px;
            border-radius: 8px;
        }
        .info-box p:last-child {
            margin-bottom: 0;
        }
        .info-box .info-title {
            font-weight: 600;
            color: #0c829b;
        }
        
        /* Kustomisasi Akordeon */
        .accordion-item {
            border: 1px solid #dee2e6;
            border-radius: 0.75rem !important; /* !important untuk override Bootstrap */
            margin-bottom: 1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: box-shadow 0.3s ease;
        }
        .accordion-item:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .accordion-header {
            border-radius: 0.75rem;
        }
        .accordion-button {
            font-weight: 600;
            font-size: 1.1rem;
            color: #343a40;
            background-color: #fff;
            border-radius: 0.75rem !important;
            padding: 1.25rem 1.5rem;
        }
        .accordion-button:not(.collapsed) {
            color: #0056b3;
            background-color: #f0f7ff;
            box-shadow: none;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
        }
        
        /* Ikon +/- pada Akordeon */
        .accordion-button::after {
            font-family: "Font Awesome 5 Free";
            content: "\f067"; /* Ikon Plus */
            font-weight: 900;
            background-image: none;
            transition: transform 0.3s ease;
        }
        .accordion-button:not(.collapsed)::after {
            content: "\f068"; /* Ikon Minus */
            transform: rotate(90deg);
        }

        /* Konten di dalam Akordeon */
        .accordion-body {
            line-height: 1.8;
            color: #495057;
            padding: 1.5rem;
        }
        .accordion-body ul {
            padding-left: 20px;
        }
        .accordion-body ul li {
            margin-bottom: 0.5rem;
        }