        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #2563eb;
            --secondary: #1d4ed8;
            --light: #f3f4f6;
        }

        body {
            line-height: 1.6;
            margin: 0;
            overflow-x: hidden;
        }

        .navbar {
            padding: 1rem 5%;
            background: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 100;
        }

        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
        }

        #menu-icon{
            display: none;
            color: rgb(0, 0, 0);
            font-size: 14pt;
        }
        
        .nav-links{
            margin: 0;
            display: flex;
            list-style: none;
            padding: 0;
            flex-wrap: wrap;
        }

        .nav-links a {
            margin-left: 0.5rem;
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }
        
        .menu{
            color: white;
            padding: 0.5rem 1.3rem;
            border-radius: 6px;
            transition: background 0.3s;
        }
        
        .menu:hover{
            background: #d6d6d6;
        }
        
        .fitur{
            color: white;
            padding: 0.5rem 1.3rem;
            border-radius: 6px;
            transition: background 0.3s;
        }
        
        .fitur:hover{
            background: #d6d6d6;
        }
        
        .about{
            color: white;
            padding: 0.5rem 1.3rem;
            border-radius: 6px;
            transition: background 0.3s;
        }
        
        .about:hover{
            background: #d6d6d6;
        }

        .login-btn {
            background: var(--primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 6px;
            transition: background 0.3s;
        }

        .login-btn:hover {
            background: var(--secondary);
        }

        /* Modal Login Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            width: 90%;
            max-width: 400px;
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .form-group input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 0.75rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: var(--secondary);
        }

        .forgot-password {
            text-align: center;
            margin-top: 1rem;
        }

        .forgot-password a {
            color: var(--primary);
            text-decoration: none;
        }

        /* Existing styles... */
        .hero {
            padding: 8rem 5% 4rem;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #1e3a8a;
        }

        .hero-text p {
            font-size: 1.1rem;
            color: #475569;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: background 0.3s;
        }

        .cta-button:hover {
            background: var(--secondary);
        }

        .hero-image {
            text-align: center;
        }

        .features {
            padding: 4rem 5%;
            background: white;
        }

        .features-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: #1e3a8a;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            padding: 2rem;
            background: var(--light);
            border-radius: 12px;
            text-align: center;
        }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            color: #1e3a8a;
        }

        .floating-card {
            position: relative;
            z-index: 6;

            animation: float 2s linear infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(30px); }
            100% { transform: translateY(0px); }
        }

        .shadow{
            position: relative;
            z-index: 5;
            width: 50%;
            top: -25px;
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 1rem;
                grid-template-columns: 1fr;
                text-align: center;
            }

            .navbar{
                z-index: 100;
            }

            #menu-icon{
                display: flex;
                z-index: 100;
            }

            .nav-links{
                position: absolute;
                top: 100%;
                right: -150%;
                width: 300px;
                height: 40vh;
                background: #ffffff;
                display: flex;
                align-items: center;
                flex-direction: column;
                padding: 50px 20px;
                transition: all .35s ease;
                border-bottom-left-radius: 15px;
            }

            .nav-links a{
                margin-left: 0;
                display: block;
                margin: 7px 0;
                margin-top: 20px;
            }
        
            .nav-links.open{
                right: 0;
            }
            
            img {
                max-width: 100%;
                height: auto;
            }

            .hero-text h1 {
                font-size: 2rem;
            }
        }  