        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }

        section {
            scroll-margin-top: 5px; 
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            background: linear-gradient(135deg, #4B0082,#8B008B,#BA55D3); ;
            color: white;
            position: relative;
            height: 80px;
            box-sizing: border-box;
        }
        .logo-container {
            position: absolute;
            display: flex;
            align-items: left;
            height: 200px;
            margin-right: 10px;
            z-index: 2;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            position: absolute;
            right: 20px;
            top: 20px;
            z-index: 1000;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            margin: 5px 0;
            transition: 0.3s;
        }

        /* Menu Mobile */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 80px;
            right: 0;
            background: white;
            width: 100%;
            max-width: 300px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 5px;
            padding: 15px;
            flex-direction: column;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu a {
            color: #4B0082 !important;
            padding: 12px;
            text-decoration: none !important;
            border-bottom: 1px solid #eee;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .menu {
                display: none;
            }
            
            .mobile-menu.active {
                display: flex;
            }
        }

        /* Animasi Hamburger saat aktif */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        .logo {
            font-size: 20px;
            font-weight: bold;
            text-align: left;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        .menu  {
            display: flex;
            gap: 25px;
            position: absolute;
            right: 30px;
            top: 15px;
            padding: 5px 10px;
            border-radius: 5px;
        }

        .menu a {
            color: white !important;
            text-decoration: none !important;
            transition: 0.3s;
        }
        .menu a:hover {
            transform: translateY(-2px);
        }
        
        .hero {
            text-align: center;
            padding: 100px 20px;
            background:linear-gradient(135deg, #4B0082,#8B008B,#BA55D3); ;
            color: white;
            font-size: 20px;
            overflow: hidden;
        }
        .hero .title {
            font-size: 50px;
            font-weight: bold;
            z-index: 2;
        }
        .profile-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 80px 10%;
            background: white;
            gap: 50px;
        }
        .profile-content {
            flex: 1;
            max-width: 600px;
        }
        .profile-title {
            font-size: 40px;
            color: #4B0082;
            margin-bottom: 30px;
            font-weight: bold;
        }
        .profile-description {
            font-size: 16px;
            line-height: 1.8;
            color: black;
            margin-bottom: 20px;
            text-align: justify;
        }
        .profile-photo {
            flex: 1;
            max-width: 500px;
            border-radius: 0px;
            overflow: hidden;
        }
        .leader-photo {
            width: 100%;
            height: auto;
            display: block;
        }
        .animate-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }

        .animate-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }
        .animate-left.visible,
        .animate-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .profile-container {
                flex-direction: column;
                padding: 25px 20px;
            }
            .profile-content {
                order: 2;
                text-align: center;
            }
            .profile-photo {
                order: 1;
                max-width: 300px;
            }
            .profile-description {
                text-align: justify;
            }
            .menu {
                display: none !important;
            }
            .stats {
                flex-direction: column;
                align-items: center;
            }
            .stats div {
                margin-bottom: 15px;
            }
        }
        .button-container{
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .whatsapp-button {
            margin-top: 25px;
            display: flex;
            justify-content: center;
        }
        .consult-btn {
            padding: 15px 30px;
            background: #25D366;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }
        .consult-btn:hover {
            background: #39FF14;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
        }
        .consult-btn:active {
            transform: translateY(0);
        }
        .consult-btn::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 24px;
            background: url('Whatsapp.svg') no-repeat center;
            background-size: contain;
        }
                @media (max-width: 768px) {
            .consult-btn {
                padding: 12px 25px;
                font-size: 14px;
            }
        }
        .bukutamu-button {
            margin-top: 25px;
            display: flex;
            justify-content: center;
        }
        .bukutamu-btn {
            padding: 15px 30px;
            background: #4B0082;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-size: 17px;
            font-weight: bold;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        /* Media Query untuk Mobile */
        @media (max-width: 768px) {
        .bukutamu-btn {
            padding: 12px 20px; /* Kurangi padding tombol */
            font-size: 14px; /* Kecilkan ukuran font */
        }
        }

        @media (max-width: 480px) {
        .bukutamu-btn {
            padding: 10px 15px;
            font-size: 13px;
        }
        }
        .bukutamu-btn:hover {
            background: #F200FF;
            transform: translateY(-2px);
            color: WHITE;
            box-shadow: 0 6px 20px rgba(128,0,128);
        }
        .bukutamu-btn:active {
            transform: translateY(0);
        }
        .bukutamu-btn::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 24px;
            background: url('buku-tamu.svg') no-repeat center;
            background-size: contain;
        }
                @media (max-width: 768px) {
            .bukutamu-btn {
                padding: 12px 25px;
                font-size: 14px;
            }
        }

        .whatsapp-button, .bukutamu-button {
            margin: 0;
            flex: 1;
            max-width: 400px;
        }

        .consult-btn, .bukutamu-btn {
            width: 100%;
            justify-content: center;
            white-space: nowrap;
            padding: 15px 20px; 
        }
        @media (max-width: 768px) {
            .whatsapp-button, .bukutamu-button {
                max-width: 280px;
            }
            .consult-btn, .bukutamu-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
        }
        @media (max-width: 768px) {
            .button-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .whatsapp-button, .bukutamu-button {
                max-width: 280px;
                width: 100%;
            }
        }
        /* Form Styles */
        /* Perbaikan CSS untuk Popup Form */
        .popup-content.large {
        max-width: 800px !important; /* Lebar maksimum diperbesar */
        width: 90%;
        min-height: 70vh; /* Tinggi minimum */
        max-height: 90vh;
        overflow-y: auto; /* Tambahkan scroll jika konten panjang */
        }

        /* Media Query untuk Mobile */
        @media (max-width: 768px) {
        .popup-content.large {
            width: 95%; /* Gunakan lebih banyak lebar layar */
            padding: 15px; /* Kurangi padding untuk hemat ruang */
            max-width: 100%; /* Hilangkan batas 800px di mobile */
            }
        }

        @media (max-width: 480px) {
        .popup-content.large {
            padding: 10px; /* Padding lebih kecil untuk layar sangat kecil */
            }
        }

        .form-container {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Membagi form menjadi 2 kolom */
        gap: 20px;
        padding: 15px;
        }

        /* Media Query untuk Mobile */
        @media (max-width: 768px) {
        .form-container {
            grid-template-columns: 1fr; /* Satu kolom di mobile */
            gap: 15px; /* Kurangi jarak antar elemen */
            padding: 10px; /* Kurangi padding */
        }
        }
        .form-group.full-width {
        grid-column: 1 / -1; /* Elemen yang memenuhi lebar penuh */
        }

        .form-group label {
        color: #4B0082;
        font-size: 14px;
        margin-bottom: 5px;
        display: block;
        }
      
        .form-group input,
        .form-group select,
        .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 2px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
        }

        .form-group textarea {
        height: 100px;
        resize: vertical;
        }

        /* Media Query untuk Mobile */
        @media (max-width: 768px) {
        .form-group label {
            font-size: 13px; /* Kecilkan ukuran font label */
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 8px; /* Kurangi padding input */
            font-size: 13px; /* Kecilkan ukuran font input */
        }

        .form-group textarea {
            height: 80px; /* Kurangi tinggi textarea */
        }
        }

        @media (max-width: 480px) {
        .form-group label {
            font-size: 12px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 6px;
            font-size: 12px;
        }
        }

        /* Loading Spinner */
        .loading-spinner {
            border: 4px solid #f3f3f3;
            border-radius: 50%;
            border-top: 4px solid #4B0082;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .loading-content {
            text-align: center;
            color: #4B0082;
        }

        /* Success Popup */
        .success-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 0 20px rgba(0,0,0,0.2);
            z-index: 1000;
            max-width: 500px;
        }

        .success-popup.visible {
            display: block;
        }

        .success-icon {
            width: 80px;
            margin-bottom: 20px;
        }

        .success-popup h2 {
            color: #4B0082;
            margin-bottom: 15px;
        }

        .success-popup p {
            color: #666;
            margin-bottom: 25px;
        }
        .success-popup {
            opacity: 0;
            transform: translate(-50%, -60%);
            transition: all 0.3s ease-out;
        }

        .success-popup.visible {
            opacity: 1;
            transform: translate(-50%, -50%);
        }

        .rating-group {
        display: flex;
        flex-direction: row;
        margin-bottom: 20px;
        }

        .rating {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
        gap: 10px;
        }

        .rating label::before {
        content: '★';
        font-size: 24px;
        margin-right: 10px;
        }

        /* Media Query untuk Mobile */
        @media (max-width: 768px) {
        .rating-group {
            flex-direction: column; /* Susun label dan rating vertikal */
            align-items: flex-start;
        }

        .rating {
            gap: 8px; /* Kurangi jarak antar bintang */
        }

        .rating label::before {
            font-size: 20px; /* Kecilkan ukuran bintang */
            margin-right: 8px;
        }
        }

        @media (max-width: 480px) {
        .rating label::before {
            font-size: 18px; /* Lebih kecil lagi untuk layar sangat kecil */
            margin-right: 6px;
        }
        }

        .rating li {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .rating input {
            display: none;
        }

        .rating label {
            display: flex;
            align-items: center;
            font-size: 18px;
            color: #999;
            transition: color 0.3s ease;
        }

        .rating label::before {
            content: '★';
            font-size: 24px;
            margin-right: 10px;
            color: #999;
            transition: color 0.3s ease;
        }

        .rating input:checked ~ label,
        .rating input:checked ~ label::before,
        .rating label:hover,
        .rating label:hover::before,
        .rating label:hover ~ label,
        .rating label:hover ~ label::before {
            color: #F200FF; 
        }

        .rating input:checked + label,
        .rating input:checked + label::before {
            color: #F200FF;
        }

        .rating li:hover label,
        .rating li:hover label::before {
            color: #F200FF;
        }

        /* Responsif untuk layar kecil */
        @media (max-width: 600px) {
            .rating label {
                font-size: 16px;
            }
            .rating label::before {
                font-size: 20px;
                margin-right: 8px;
            }
        }
        .website-button {
            margin-top: 20px;
            display: flex;
            justify-content: left;
        }
            @media (max-width: 768px) {
                .website-button {
                    justify-content: center;
                }
                }
        .situs-btn {
            padding: 10px 10px;
            background: #4B0082;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 2px 5px rgba(75, 0, 130);
        }
        .situs-btn:hover {
            background: #F200FF;
            transform: translateY(-2px);
            box-shadow: 0 5px 7px rgba(128,0,128);
        }
        .situs-btn:active {
            transform: translateY(0);
        }
        .situs-btn::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 24px;
            background: url('logo-bps.svg') no-repeat center;
            background-size: contain;
        }
                @media (max-width: 768px) {
            .situs-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }
        .stats-container {
            text-align: center;
            padding: 50px;
            color: #4B0082;
        }
        .stats-title {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 80%;
            margin: auto;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }
        .stats div {
            font-size: 40px;
            font-weight: bold;
            color: #4B0082;
        }
        .stats span {
            display: block;
            font-size: 16px;
            font-weight: normal;
            color: black;
        }
        .stats.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .services-container {
            text-align: center;
            color: #4B0082;
        }
        .services-title {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #4B0082;
            text-align: center;
        }
        .report-container {
            text-align: center;
            padding: 50px;
            color: #4B0082;
            margin-bottom: 0%;
        }
        .report-title {
            font-size: 40px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        .animate-right h2 {
            color: #4B0082;
            font-size: 15px;
            text-align: center;
            font-weight: bold;
        }
        .animate-right h3 {
            color: #4B0082;
            font-size:  15px;
            text-align: center;
            font-weight: normal;
        }
        .cards {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            width: 250px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px) scale(1.02);
            background: #E6E6FA;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .card img {
            width: 80px;
            height: 80px; 
            object-fit: contain;
            transition: all 0.3s ease; 
        }

        .card:hover img {
            transform: scale(1.3); /* Zoom gambar saat hover */
        }
        .report-container .card img {
            width: 100px; /* Ukuran lebih besar untuk report */
            height: 100px;
        }
        @media (max-width: 768px) {
            .card img {
                width: 60px;
                height: 60px;
            }
            
            .report-container .card img {
                width: 80px;
                height: 80px;
            }
        }
        .card h3 {
            margin: 10px 0;
            font-size: 18px;
        }
        .card p {
            font-size: 14px;
            color: black;
        }
        /* Animasi untuk card */
        .animate-card {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Tambahkan delay berbeda untuk tiap card */
        .animate-card:nth-child(1) { transition-delay: 0.2s; }
        .animate-card:nth-child(2) { transition-delay: 0.4s; }
        .animate-card:nth-child(3) { transition-delay: 0.6s; }

        /* Popup Whistleblowing */
        #whistlePopup .popup-content {
            max-width: 600px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        #detailGroup {
            transition: all 0.3s ease;
        }
        /* Survey Container */
        /* Survey Container */
        .survey-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 10% 0px 10% !important;
            background: white;
            gap: 50px;
            margin-top: 10px;
        }

        .survey-photo {
            flex: 1;
            max-width: 500px;
            border-radius: 0px;
            overflow: hidden;
        }

        .survey-image {
            width: 100%;
            height: auto;
            display: block;
            margin-top: 0px;
        }

        .survey-content {
            flex: 1;
            max-width: 600px;
        }

        .survey-title {
            font-size: 40px !important; 
            color: #4B0082;
            margin-bottom: 5px;
            font-weight: bold;
            text-align: left;
        }

        .survey-description {
            font-size: 16px;
            line-height: 1.8;
            color: black;
            margin-bottom: 20px;
            text-align: justify;
        }

        .survey-button {
            margin-top: 20px;
            display: flex;
            justify-content: flex-start; /* Memastikan tombol rata tengah */
            align-items: center; /* Memastikan vertikal rata tengah */
            text-align: left; /* Memastikan teks di dalam tombol rata tengah */
        }

        @media (max-width: 768px) {
            .survey-container {
                flex-direction: column;
                padding: 20px 20px 25px 20px; /* Kurangi padding atas untuk mobile */
            }
            .survey-content {
                order: 2;
                text-align: center;
            }
            .survey-photo {
                order: 1;
                max-width: 300px;
            }
            .survey-description {
                text-align: justify;
            }
            .survey-button {
                justify-content: center;
            }
        }

        .survey-btn {
        /* Tingkatkan padding horizontal untuk ruang lebih */
            background: #4B0082;
            color: white;
            padding: 10px 5px;
            font-size: 14px;
            min-width: 150px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 2px 5px rgba(75, 0, 130);
            text-align: left; /* Rata tengah teks di dalam tombol */
            white-space: normal; /* Izinkan teks membungkus jika terlalu panjang */
        }

        .survey-btn:hover {
            background: #F200FF;
            transform: translateY(-2px);
            box-shadow: 0 5px 7px rgba(128,0,128);
        }

        .survey-btn:active {
            transform: translateY(0);
        }

        .survey-btn::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 24px;
            background-size: contain;
        }

        @media (max-width: 768px) {
        .survey-container {
            flex-direction: column;
            padding: 15px 20px 20px 20px;
            gap: 10px;
        }
        .survey-content {
            order: 2;
            text-align: left; /* Pastikan konten align kiri di mobile */
        }
        .survey-photo {
            order: 1;
            max-width: 300px;
        }
        .survey-description {
            text-align: justify;
        }
        .survey-button {
            justify-content: flex-start; /* Tetap align kiri di mobile */
        }
        .survey-btn {
            padding: 10px 5px;
            font-size: 14px;
            min-width: 150px;
        }
    }
        /* Dashboard Styles */
        .dashboard-container {
            padding: 50px 20px;
            background: #f8f9fa;
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin: 30px 0;
        }

        .dashboard-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-align: center;
        }

        .indicator-header {
            color: #4B0082;
            margin-bottom: 15px;
        }

        .indicator-value {
            font-size: 2.5em;
            font-weight: 700;
            color: #4B0082;
        }

        .indicator-change {
            font-size: 1.2em;
            margin-top: 10px;
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
        }

        .change-up {
            background: #e8f8f0;
            color: #2ecc71;
        }

        .change-down {
            background: #fdedec;
            color: #e74c3c;
        }

        @media (max-width: 768px) {
            .dashboard-grid {
                grid-template-columns: 1fr;
            }
        }
        .loading-spinner {
            border: 4px solid #f3f3f3;
            border-radius: 50%;
            border-top: 4px solid #4B0082;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .file-upload-container {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 5px;
        }

        .upload-btn {
            background-color: #4B0082;
            color: white;
            padding: 8px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .upload-btn:hover {
            background-color: #3a0063;
        }

        #fileName {
            font-size: 14px;
            color: #666;
        }
        /* Scroll to Top Button Styles */
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 2000;
        }
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-to-top:hover {
            background-color: green;
        }
        .scroll-to-top::before {
            content: '↑';
            font-size: 30px;
        }
        .footer {
            background:  #4B0082;
            color: white;
            padding: 50px 10%;
            display: flex;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .footer-section {
            flex: 1;
            min-width: 300px;
        }

        .footer h3 {
            color: #fff;
            font-size: 40px;
            margin-bottom: 20px;
            padding-left: 0px;
        }

        .footer h4 {
            color:white;
            font-size: 20px;
            margin: 15px 0;
        }

        .footer ul {
            list-style: none;
            padding: 0;
            text-align: center;
            padding: 0;
        }

        .footer li {
            margin: 15px 0;
            line-height: 1.5;
        }

        @media (max-width: 768px) {
            .footer ul {
                text-align: left;
                margin-top: 5px;
                padding: 0;
            }
            .footer li {
                margin: 5px 0;
                line-height: 1.3;
            }
            .Jam-Layanan {
                margin-bottom: 0;
            }

        }
        .footer-section-popups {
            font-weight: bold;
        }
        .footer a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: #b1d0ff;
        }

        .contact-info {
            margin: 15px 0;
        }
        .Jam-Layanan {
            text-align: left;
        }

        .Jam-Layanan li {
            text-align: left;
        }
        .footer a[href^="mailto:"] {
            text-decoration: underline;
            color: #b1d0ff !important;
        }

        .footer a[href^="mailto:"]:hover {
            color: #fff !important;
        }

        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            justify-content: center;
            align-items: center;
        }

        .popup-overlay.active {
            display: flex;
        }

        .popup-overlay h3{
            font-size: x-small;
            font-style: normal;
            font-weight: lighter;
            text-align: center;
            color:#4B0082;
            margin-bottom: 5px;
        }

        .popup-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            background: white;
            padding: 20px;
            border-radius: 10px;
        }
        .popup-close {
            position: absolute;
            top: 10px;  
            right: 10px; 
            background: #4B0082;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
            font-size: 18px;
            z-index: 1000;
        }
        @media (max-width: 768px) {
        .popup-close {
            width: 28px;
            height: 28px;
            font-size: 16px;
        }
        }
        .popup-image {
            max-width: 100%;
            max-height: 80vh;
            width: auto;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .contact-info div {
            margin-bottom: 10px;
        }
        .social-media {
            text-align: right;
            flex: 0 1 300px; 
            min-width: 200px;
        }
        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: center; 
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .social-media {
                text-align: left;
                margin-top: 0px;
            }
            .social-icons {
                justify-content: left;
                gap: 10px;
                margin-top: 5px;
            }
            .contact-info {
                margin: 0;
            }
        }
        .social-icons a img {
            width: 50px;
            height: 50px;
            transition: transform 0.3s ease-in-out;
        }

        .social-icons a:hover img {
            transform: scale(1.2);
        }
        .copyright {
            text-align: center;
            padding: 20px;
            background:#4B0082 ;
            color: white;
            width: 100%;
        }

        @media (max-width: 768px) {
            .footer {
                flex-direction: column;
                padding: 30px 20px;
            }
        }
