
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background-color: #121212;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a1a1a;
            color: #fff;
            padding: 0.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1001;
            width: 100%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #4CAF50;
            text-decoration: none;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 1.5rem;
        }
        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .nav-links a:hover {
            color: #4CAF50;
        }
        .auth-buttons a {
            color: #e0e0e0;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 1px solid #4CAF50;
            border-radius: 4px;
            margin-left: 1rem;
            transition: background-color 0.3s ease, color 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .auth-buttons a:hover, .mobile-register:hover {
            background-color: #4CAF50;
            color: #121212;
        }
        .mobile-register {
            display: none;
            padding: 0.5rem 1rem;
            border: 1px solid #4CAF50;
            border-radius: 4px;
            color: #e0e0e0;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #e0e0e0;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #e0e0e0;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: #1a1a1a;
            padding: 1rem;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        .banner {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }
        .banner-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .banner-slide.active {
            opacity: 1;
        }
        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        main {
            padding: 2rem 0;
        }
        .info-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        .info-header h2 {
            font-size: 1.5rem;
            color: #e0e0e0;
        }
        .info-header a {
            color: #4CAF50;
            text-decoration: none;
        }
        .info-section-wrapper {
            background-color: #1e1e1e;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            padding: 20px;
            margin-bottom: 20px;
        }
        .info-section {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
        }
        .info-card {
            background-color: #2a2a2a;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            width: 32%;
            min-width: 280px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        .info-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            transform: scale(1.02);
        }
        .info-card img {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }
        .info-card:hover img {
            transform: scale(1.05);
        }
        .info-card .content {
            padding: 15px;
        }
        .info-card .content h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #e0e0e0;
        }
        .info-card .content p {
            font-size: 0.9rem;
            color: #b0b0b0;
        }
        .selengkapnya-link {
            text-align: center;
            margin-top: 20px;
        }
        .selengkapnya-link a {
            color: #4CAF50;
            text-decoration: none;
            font-weight: bold;
        }
        .selengkapnya-link a:hover {
            text-decoration: underline;
        }

        footer {
            background-color: #1a1a1a;
            color: #e0e0e0;
            padding: 2rem 0;
            margin-top: 2rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
            margin: 0 20px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #4CAF50;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section li {
            margin: 0.5rem 0;
        }

        .footer-section a {
            color: #b0b0b0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #4CAF50;
        }

        @media (max-width: 768px) {
            nav {
                justify-content: space-between;
            }
            .nav-links, .auth-buttons {
                display: none;
            }
            .mobile-register, .menu-toggle {
                display: inline-block;
            }
            .mobile-menu.active {
                display: block;
            }
            .mobile-menu .nav-links {
                display: flex;
                flex-direction: column;
                margin-bottom: 1rem;
            }
            .mobile-menu .nav-links li {
                margin: 0.5rem 0;
            }
            .mobile-menu .auth-buttons {
                display: flex;
                flex-direction: column;
            }
            .mobile-menu .auth-buttons a {
                margin: 0.5rem 0;
                text-align: center;
            }
            .banner {
                height: 100px; /* Adjust the height for mobile devices */
            }
            .banner-slide img {
                object-fit: contain; /* Change to contain to show the full image */
            }
            .info-section {
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                padding-bottom: 10px;
            }
            .info-card {
                width: 80%;
                scroll-snap-align: center;
                flex-shrink: 0;
            }
            footer {
                padding: 1rem 0; /* Reduce padding */
            }
            .footer-content {
                flex-direction: column; /* Stack sections vertically */
                align-items: center; /* Center align items */
                text-align: center; /* Center text */
            }
            .footer-section {
                margin: 1rem 0; /* Adjust margin for spacing */
                min-width: 0; /* Allow section to take full width */
            }
            .footer-section h3 {
                font-size: 1.1rem; /* Adjust heading size */
            }
            .footer-section ul {
                padding: 0; /* Remove padding from list */
            }
            .footer-section li {
                margin: 0.5rem 0; /* Maintain spacing for list items */
            }
            .footer-bottom {
                margin-top: 1rem; /* Space between sections */
                font-size: 0.9rem; /* Adjust font size */
            }
        }