/* Navbar */
        .navbar { background: var(--white); padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.03); position: sticky; top: 0; z-index: 100; }
        .logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; color: var(--text); text-decoration: none; }
        .logo-icon { width: 35px; height: 35px; border-radius: 10px; background: linear-gradient(135deg, var(--orange), var(--pink)); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
        .nav-links { display: flex; gap: 20px; align-items: center; }
        .nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
        .nav-links a:hover { color: var(--orange); }
        
        .btn-nav { background: #fff0eb; color: var(--orange) !important; padding: 8px 18px; border-radius: 20px; font-weight: 700; transition: 0.2s; }
        .btn-nav:hover { background: var(--orange); color: white !important; }
        .btn-outline { border: 2px solid var(--border); padding: 6px 16px; border-radius: 20px; }



footer { background: var(--text); color: rgba(255,255,255,0.6); text-align: center; padding: 30px 20px; font-size: 0.85rem; margin-top: auto; }
        footer a { color: var(--orange); text-decoration: none; font-weight: 600; margin: 0 10px; }