        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1e7f5c;
            --accent: #06b6d4;
            --bg: #ffffff;
            --bg-alt: #f9fafb;
            --text: #111827;
            --text-light: #6b7280;
            --border: #e5e7eb;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ============================================
           MODERN NAVBAR WITH PROMINENT BUTTONS
        ============================================ */

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.75rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

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

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* PROMINENT LOGIN BUTTONS */
        .auth-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            padding: 0.875rem 1.75rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.15);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .btn:hover::before {
            transform: scaleX(1);
        }

        .btn span,
        .btn i {
            position: relative;
            z-index: 1;
        }

        .btn-student {
            background: linear-gradient(135deg, #2563eb, #3b82f6);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-student:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

        .btn-teacher {
            background: linear-gradient(135deg, #10b981, #34d399);
            color: white;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .btn-teacher:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }

        .btn-parent {
            background: linear-gradient(135deg, #8b5cf6, #a78bfa);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }

        .btn-parent:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 0.5rem;
            background: var(--bg-alt);
            border: 2px solid var(--border);
            border-radius: 8px;
            z-index: 1002;
            position: fixed;
            right: 1rem;
            top: 0.75rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-toggle:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .mobile-toggle:hover span {
            background: white;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-toggle.active {
            background: var(--primary);
            border-color: var(--primary);
        }

        .mobile-toggle.active span {
            background: white;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .desktop-auth {
            display: flex;
        }

        .mobile-auth {
            display: none;
        }

        @media (max-width: 1024px) {
            .desktop-auth {
                display: none;
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), #0891b2);
            color: white;
        }

        .btn-white {
            background: white;
            color: var(--accent);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .hero-section {
            padding: 180px 0 100px;
            background: linear-gradient(135deg, var(--accent), #0891b2);
            color: white;
        }

        .hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .features-section {
            padding: 100px 0;
            background: var(--bg-alt);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            border: 2px solid var(--border);
            border-radius: 1.5rem;
            padding: 2rem;
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--accent);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--accent), #0891b2);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            z-index: 999;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                transition: left 0.4s ease;
                z-index: 999;
                padding: 2rem;
            }

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

            .nav-links a {
                font-size: 1.5rem;
                font-weight: 700;
                padding: 0.75rem 1.5rem;
                border-radius: 9999px;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                color: var(--text);
                text-align: center;
            }

            .nav-links a::after {
                display: none;
            }

            .nav-links a:hover {
                background: var(--primary);
                color: white;
                transform: scale(1.05);
            }

            .mobile-toggle {
                display: flex;
            }

            .auth-buttons {
                display: none;
            }

            .nav-links .mobile-auth {
                display: flex !important;
                flex-direction: column;
                width: 85%;
                max-width: 320px;
                gap: 1rem;
            }

            .nav-links .mobile-auth .btn {
                width: 100%;
                justify-content: center;
                white-space: nowrap;
                padding: 1rem 1.5rem;
                font-size: 1rem;
                display: flex;
                align-items: center;
                gap: 0.75rem;
            }

            .nav-links .mobile-auth .btn span {
                display: inline;
            }

            .nav-links .mobile-auth .btn i {
                flex-shrink: 0;
            }

            .logo img {
                height: 35px;
            }

            .hero-section {
                padding: 140px 0 60px;
            }
        }
