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

        :root {
            --primary-green: #2E7D32;
            --primary-purple: #6A1B9A;
            --bg-primary: #F5F7FA;
            --text-primary: #2C3E50;
            --text-secondary: #5A6C7D;
            --text-muted: #95A5A6;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF2 100%);
            color: var(--text-primary);
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 30%, rgba(46, 125, 50, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(106, 27, 154, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        h1,
        h2,
        h3 {
            font-family: 'Poppins', sans-serif;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(46, 125, 50, 0.1);
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        nav {
            position: fixed;
            width: 100%;
            z-index: 50;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(46, 125, 50, 0.1);
            padding: 0.75rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--primary-green), #4CAF50);
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(46, 125, 50, 0.3);
            font-size: 0.875rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(46, 125, 50, 0.4);
        }

        .content {
            max-width: 900px;
            margin: 0 auto;
            padding: 8rem 1.5rem 4rem;
            position: relative;
            z-index: 1;
        }

        .content h1 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-green), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .content h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
        }

        .content h3 {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .content p,
        .content li {
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .content ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .content li {
            margin-bottom: 0.5rem;
        }

        .content strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .info-box {
            background: rgba(46, 125, 50, 0.05);
            border-left: 4px solid var(--primary-green);
            padding: 1.25rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }

        .warning-box {
            background: rgba(106, 27, 154, 0.05);
            border-left: 4px solid var(--primary-purple);
            padding: 1.25rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }

        footer {
            background: rgba(255, 255, 255, 0.5);
            border-top: 1px solid rgba(46, 125, 50, 0.1);
            padding: 2rem 0;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.8125rem;
            position: relative;
            z-index: 1;
        }