* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #7A5AF8;
            --accent: #FF6AD5;
            --neutral-600: #4B5563;
            --neutral-800: #1F2937;
            --neutral-900: #111827;
            --spacing: 8px;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--neutral-800);
            padding-top: 80px;
        }
             .mobile-nav a {
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--neutral-600);
    font-weight: 600;
}

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: calc(var(--spacing) * 4);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 calc(var(--spacing) * 3);
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: calc(var(--spacing) * 2) 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        nav {
            display: flex;
            gap: calc(var(--spacing) * 4);
        }

        nav a {
            text-decoration: none;
            color: var(--neutral-600);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        .page-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: calc(var(--spacing) * 12) 0;
            text-align: center;
        }

        .content-section {
            padding: calc(var(--spacing) * 12) 0;
            max-width: 800px;
            margin: 0 auto;
        }

        .content-section h2 {
            color: var(--primary);
            margin: calc(var(--spacing) * 6) 0 calc(var(--spacing) * 3);
            font-size: 1.8rem;
        }

        .content-section p {
            margin-bottom: calc(var(--spacing) * 2);
            line-height: 1.7;
        }

        footer {
            background: var(--neutral-900);
            color: white;
            padding: calc(var(--spacing) * 8) 0 calc(var(--spacing) * 4);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: calc(var(--spacing) * 6);
            margin-bottom: calc(var(--spacing) * 6);
        }

        .footer-section h3 {
            margin-bottom: calc(var(--spacing) * 2);
            color: var(--accent);
        }

        .footer-section a {
            color: #9CA3AF;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: calc(var(--spacing) * 4);
            text-align: center;
            color: #9CA3AF;
        }     .mobile-nav a {
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--neutral-600);
    font-weight: 600;
}

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 999;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: calc(var(--spacing) * 4);
        }

        @media (max-width: 768px) {
            nav { display: none; }
            .burger { display: flex !important; }
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--primary);
        }

