 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(to bottom, #003399 0%, #002673 100%);
            min-height: 100vh;
        }

        /* Navbar */
        .navbar {
            background: white;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 50px;
            height: 60px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0;
        }

        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo-text h1 {
            color: #1f2937;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .logo-text p {
            color: #6b7280;
            font-size: 0.75rem;
            font-weight: 400;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .nav-menu a:hover {
            color: #10b981;
        }

        .btn-login {
            background: #fbbf24;
            color: #1f2937;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
        }
		
		.btn-daftar {
            background: #53cba3;;
            color: #1f2937;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-daftar:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
        }
		
        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #4b5563;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .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);
        }

        /* Hero Section */
        .hero {
            background: white;
            margin: 2rem 5%;
            border-radius: 30px;
            padding: 4rem 5%;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 4rem;
            align-items: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .hero-content h2 {
            font-size: 2.5rem;
            color: #1f2937;
            margin-bottom: 0.5rem;
            line-height: 1.3;
            font-weight: 700;
        }

        .hero-content .subtitle {
            font-size: 2rem;
            color: #10b981;
            margin-bottom: 1.5rem;
            line-height: 1.3;
            font-weight: 600;
        }

        .hero-content p {
            color: #6b7280;
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            max-width: 90%;
        }

        .btn-primary {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
        }

        /* Hero Image */
        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .image-wrapper {
            background: white;
            border-radius: 30px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border: 2px solid #e5e7eb;
            width: 100%;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 1rem 1.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 3s ease-in-out infinite;
            border: 1px solid #f3f4f6;
            z-index: 10;
        }

        .floating-card i {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .floating-card strong {
            display: block;
            color: #1f2937;
            font-size: 1.2rem;
            margin-bottom: 2px;
            font-weight: 700;
        }

        .floating-card p {
            font-size: 0.85rem;
            color: #6b7280;
            margin: 0;
            line-height: 1.3;
        }

        .card-1 {
            top: 5%;
            left: -5%;
        }

        .card-2 {
            bottom: 5%;
            right: -5%;
            animation-delay: 1.5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Features Section */
        .features {
            margin: 2rem 5% 4rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .feature-card h3 {
            color: #1f2937;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-card p {
            color: #6b7280;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                transition: left 0.3s ease;
                gap: 1.5rem;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                width: 100%;
                text-align: center;
            }

            .nav-menu a {
                display: block;
                padding: 1rem;
                color: #4b5563;
            }

            .nav-menu a:hover {
                background: #f3f4f6;
                border-radius: 8px;
            }

            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 2rem;
                gap: 3rem;
            }

            .hero-content h2 {
                font-size: 1.8rem;
            }

            .hero-content .subtitle {
                font-size: 1.5rem;
            }

            .hero-content p {
                max-width: 100%;
                font-size: 1rem;
            }

            .hero-image {
                order: -1;
            }

            .image-wrapper {
                padding: 20px;
            }

            .floating-card {
                display: none;
            }

            .features {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-card {
                padding: 2rem;
            }
        }
		
		
		/* Logo Partners */
		.logo-partners {
			display: flex;
			gap: 2rem;
			align-items: center;
			margin-bottom: 2.5rem;
			padding: 1.5rem;
			border-radius: 15px;
			justify-content: flex-start;
		}
		
		.partner-logo {
			height: 100px;
			width: auto;
			object-fit: contain;
			filter: grayscale(20%);
			transition: all 0.3s;
			opacity: 0.8;
		}
		
		.partner-logo:hover {
			filter: grayscale(0%);
			opacity: 1;
			transform: scale(1.05);
		}
		
		/* Responsive untuk logo partners */
		@media (max-width: 768px) {
			.logo-partners {
				gap: 1.5rem;
				padding: 1rem;
				justify-content: center;
			}
			
			.partner-logo {
				height: 50px;
			}
		}
		
		
		/* Available Features Section */
		.available-features {
			padding: 4rem 5%;
			margin: 2rem 5% 4rem;
			border-radius: 30px;
			box-shadow: 0 10px 40px rgba(0,0,0,0.1);
		}
		
		.available-features .container {
			max-width: 1200px;
			margin: 0 auto;
		}
		
		.section-header {
			text-align: center;
			margin-bottom: 3rem;
		}
		
		.section-header h2 {
			font-size: 2.2rem;
			color: #dbdfe3;;
			margin-bottom: 0.5rem;
			font-weight: 700;
		}
		
		.section-header p {
			color: #dbdfe3;
			font-size: 1.1rem;
			max-width: 600px;
			margin: 0 auto;
		}
		
		.features-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
			gap: 2rem;
		}
		
		.feature-item {
			background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
			padding: 2rem;
			border-radius: 20px;
			text-align: center;
			transition: all 0.3s ease;
			border: 2px solid transparent;
			text-decoration: none; 
			 cursor: pointer;
		}
		
		.feature-item:hover {
			transform: translateY(-5px);
			box-shadow: 0 15px 35px rgba(0,0,0,0.1);
			border-color: #10b981;
			background: white;
			text-decoration: none;
		}
		
		.feature-item:focus {
			outline: none;
			text-decoration: none;
		}
		.feature-item-icon {
			width: 70px;
			height: 70px;
			margin: 0 auto 1.5rem;
			background: linear-gradient(135deg, #10b981, #059669);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			color: white;
			font-size: 1.8rem;
			transition: all 0.3s;
		}
		
		.feature-item:hover .feature-item-icon {
			transform: rotateY(360deg);
			background: linear-gradient(135deg, #059669, #10b981);
		}
		.feature-item:hover {
			transform: translateY(-5px); /* Efek naik saat hover */
			color: inherit;
		}
		.feature-item h4 {
			color: #1f2937;
			font-size: 1.2rem;
			margin-bottom: 0.75rem;
			font-weight: 600;
			text-decoration: none;
			color: inherit;
		}
		
		.feature-item p {
			color: #6b7280;
			font-size: 0.95rem;
			line-height: 1.6;
			text-decoration: none;
			color: inherit;
		}

		/* Responsive untuk Available Features */
		@media (max-width: 768px) {
			.available-features {
				padding: 3rem 5%;
				margin: 2rem 3% 3rem;
			}
			
			.section-header h2 {
				font-size: 1.8rem;
			}
			
			.section-header p {
				font-size: 1rem;
			}
			
			.features-grid {
				grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
				gap: 1.5rem;
			}
			
			.feature-item {
				padding: 1.5rem;
				text-decoration: none; /* Hilangkan garis bawah link */
				color: inherit; /* Warna teks mengikuti parent */
				display: block; /* Agar behave seperti div */
				transition: transform 0.3s; /* Efek animasi */
			}
			
			.feature-item-icon {
				width: 60px;
				height: 60px;
				font-size: 1.5rem;
			}
			
			.feature-item h4 {
				font-size: 1.1rem;
			}
			
			.feature-item p {
				font-size: 0.9rem;
			}
		}
		
		@media (max-width: 480px) {
			.features-grid {
				grid-template-columns: 1fr;
			}
		}
		
		/* 1. Reset warna dasar untuk tag a di dalam feature-item */
		.feature-item,
		.feature-item:link,
		.feature-item:visited,
		.feature-item:hover,
		.feature-item:active {
			color: #1f2937; /* Warna hitam/abu tua */
			text-decoration: none;
		}
		
		/* 2. Pastikan judul (h4) tetap hitam */
		.feature-item h4 {
			color: #1f2937; /* Hitam */
			font-size: 1.2rem;
			margin-bottom: 0.75rem;
			font-weight: 600;
		}
		
		/* 3. Pastikan paragraf (p) tetap abu-abu/hitam */
		.feature-item p {
			color: #4b5563; /* Abu-abu gelap agar terbaca jelas tapi tidak hitam pekat */
			font-size: 0.95rem;
			line-height: 1.6;
		}
		
		/* 4. Hapus style hover yang mengubah warna inherit */
		.feature-item:hover {
			transform: translateY(-5px);
			box-shadow: 0 15px 35px rgba(0,0,0,0.1);
			border-color: #10b981;
			background: white;
			/* Hapus 'color: inherit' dari sini agar tidak mengambil warna default link */
		}
		
		/* Footer */
		.footer {
			background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
			color: white;
			padding: 3rem 5% 1.5rem;
			margin-top: 4rem;
		}
		
		.footer-container {
			max-width: 1400px;
			margin: 0 auto;
		}
		
		.footer-content {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
			gap: 3rem;
			margin-bottom: 2.5rem;
		}
		
		.footer-logo {
			display: flex;
			align-items: center;
			gap: 15px;
		}
		
		.footer-logo-img {
			width: 60px;
			height: 60px;
			object-fit: contain;
			background: white;
			border-radius: 12px;
			padding: 5px;
		}
		
		.footer-logo-text h3 {
			color: white;
			font-size: 1.5rem;
			font-weight: 700;
			margin-bottom: 5px;
		}
		
		.footer-logo-text p {
			color: #94a3b8;
			font-size: 0.9rem;
		}
		
		.footer-contact h4,
		.footer-social h4 {
			color: white;
			font-size: 1.2rem;
			font-weight: 600;
			margin-bottom: 1.5rem;
		}
		
		.footer-contact p {
			color: #94a3b8;
			font-size: 0.95rem;
			margin-bottom: 0.75rem;
			display: flex;
			align-items: center;
			gap: 10px;
		}
		
		.footer-contact p i {
			color: #10b981;
			width: 20px;
		}
		
		.social-icons {
			display: flex;
			gap: 10px;
		}
		
		.social-icon {
			width: 45px;
			height: 45px;
			background: rgba(255, 255, 255, 0.1);
			border-radius: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
			color: white;
			text-decoration: none;
			transition: all 0.3s;
			font-size: 1.2rem;
		}
		
		.social-icon:hover {
			background: #10b981;
			transform: translateY(-3px);
		}
		
		.footer-bottom {
			border-top: 1px solid rgba(255, 255, 255, 0.1);
			padding-top: 1.5rem;
			text-align: center;
		}
		
		.footer-bottom p {
			color: #94a3b8;
			font-size: 0.9rem;
			margin: 0;
		}
		
		/* Responsive Footer */
		@media (max-width: 768px) {
			.footer {
				padding: 2.5rem 5% 1rem;
			}
			
			.footer-content {
				grid-template-columns: 1fr;
				gap: 2rem;
				text-align: center;
			}
			
			.footer-logo {
				justify-content: center;
			}
			
			.footer-contact p {
				justify-content: center;
			}
			
			.social-icons {
				justify-content: center;
			}
			
			.footer-bottom p {
				font-size: 0.85rem;
			}
		}