body {
            font-family: 'Poppins', sans-serif;
        }

        .hero-bg {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://sidadung.upnyk.ac.id/assets/images/upn_new_bg.jpg');
            background-size: cover;
            background-position: center;
        }

        .hero-button {
            transition: all 0.4s ease-in-out;
            background-color: #10B981;
            /* Hijau pastel untuk tombol */
        }

        .hero-button:hover {
            transform: scale(1.05);
            background-color: #059669;
            /* Hijau pastel lebih gelap saat hover */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .nav-link:hover {
            color: #10B981;
            /* Hijau pastel untuk hover navigasi */
        }

        .footer-link:hover {
            color: #A7F3D0;
            /* Hijau pastel untuk hover footer */
        }

        .pastel-green-bg {
            background-color: #ECFDF5;
            /* Latar belakang hijau pastel untuk section */
        }

        .pastel-green-accent {
            border-left: 4px solid #10B981;
            /* Aksen hijau pastel pada elemen tertentu */
            padding-left: 1rem;
        }

        .dark-green-bg {
            background-color: #065f46;
            /* Hijau tua menggantikan biru tua */
        }

        .dark-green-text {
            color: #065f46;
            /* Hijau tua untuk teks */
        }

        .dark-green-ring {
            --tw-ring-color: #065f46;
            /* Hijau tua untuk ring fokus */
        }

        .dark-green-hover:hover {
            background-color: #064e3b;
            /* Hijau tua lebih gelap untuk hover */
        }

        .accordion-button {
            transition: all 0.3s ease-in-out;
        }

        .accordion-button:hover {
            background-color: #D1FAE5;
            /* Hijau pastel lebih terang untuk hover */
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }

        .accordion-content.open {
            max-height: 3000px;
            /* Nilai besar untuk menampung konten */
        }

        .sub-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }

        .sub-accordion-content.open {
            max-height: 3000px;
            /* Nilai untuk menampung sub-konten */
        }

        #back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #10B981;
            /* Hijau pastel */
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        #back-to-top:hover {
            background-color: #059669;
            /* Hijau pastel lebih gelap saat hover */
            transform: scale(1.1);
        }

        #back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .custom-text::first-line {
        text-indent: -0.5em; /* Geser baris pertama ke kiri */
        
        }

        
