<!-- CUSTOM CSS SECTION --><style>
       /* BASE STYLES */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa; /* Light background */
        }
        .header-bg {
            background-color: #004c99; /* Deep Blue primary color */
        }
        
        /* PRIMARY BUTTON STYLES */
        .btn-primary {
            background-color: #ffc107; /* Gold accent color */
            color: #004c99;
            transition: background-color 0.3s;
        }
        .btn-primary:hover {
            background-color: #e0a800;
        }

        /* NAVIGATION ACTIVE LINK STYLES */
        .nav-link.active-link.desktop {
            border-bottom: 3px solid #ffc107;
            color: #ffc107 !important;
        }
        .nav-link.active-link.mobile {
            background-color: #003a73; /* Slightly darker blue */
            border-left: 5px solid #ffc107;
            padding-left: 0.5rem; 
        }

        /* MARQUEE / SLIDE SPONSOR STYLES (DIKEMBALIKAN KE MANTUL/BOUNCING) */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            display: flex;
            justify-content: center;
        }
        .marquee-content {
            display: inline-block;
            /* Tidak perlu duplikasi konten lagi karena ini adalah efek bolak-balik */
            padding-left: 0; 
            /* Mengubah nama keyframes, durasi, dan properti animasi */
            animation: bounce-slide 4s ease-in-out infinite alternate; 
        }
        .marquee-content > div {
            /* Memastikan logo di dalamnya inline */
            display: inline-flex;
            gap: 2rem; 
        }

        @keyframes bounce-slide { /* Mengubah nama keyframes */
            /* Pindahkan konten ke kanan (0) */
            from { transform: translateX(0); }
            /* Pindahkan konten ke kiri (-500px, disesuaikan agar sesuai dengan lebar konten) */
            to { transform: translateX(-40px); } 
        }

        /* HERO SECTION STYLES (BACKGROUND IMAGE) */
        .hero-section {
            background-image: url('file/herobg.png'); /* Ganti dengan URL gambar Anda */
            background-size: cover;
            background-position: center;
            position: relative;
            padding: 80px 0; /* Padding vertikal */
            color: white; /* Teks putih di atas gambar */
            border-radius: 1rem; /* Sesuai dengan border-radius section induk */
            overflow: hidden; /* Pastikan gambar tidak keluar dari radius */
        }

        /* Overlay untuk meningkatkan keterbacaan teks */
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5); /* Overlay gelap 50% */
            z-index: 1;
        }

        .hero-section > * {
            position: relative;
            z-index: 2; /* Pastikan konten di atas overlay */
        }

        .hero-section h1, .hero-section p, .hero-section .bg-[#e9f2ff] {
            color: white; /* Pastikan teks di hero section tetap putih */
        }
        
        .hero-section .bg-[#e9f2ff] {
             background-color: rgba(233, 242, 255, 0.2); /* Transparansi untuk kotak waktu/tempat */
             border: 1px solid rgba(255, 255, 255, 0.3); /* Border samar */
        }
        .hero-section .bg-[#e9f2ff] p {
             color: white; /* Memastikan teks di dalam kotak juga putih */
        }
        .address {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0rem 7%;
            margin-bottom: 1rem;
            margin-top: -1rem;
            border-bottom: 0.1rem solid white;
            height: 5rem;
        }
        @media (max-width: 450px) {
            html {
                font-size: 50%;
            }
        }

    </style>
    <!-- END CUSTOM CSS SECTION -->