        * {
            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);
            transition: all 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        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: 1100px;
            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;
            text-align: center;
        }

        .content>p {
            text-align: center;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            font-size: 1.125rem;
        }

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

        .sitemap-section h2 {
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .sitemap-section h2 i {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(46, 125, 50, 0.1);
            border-radius: 12px;
            font-size: 1.125rem;
        }

        .sitemap-section ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .sitemap-section a {
            color: var(--text-secondary);
            text-decoration: none;
            padding: 0.75rem 1rem;
            border-radius: 12px;
            background: rgba(46, 125, 50, 0.03);
            border: 1px solid rgba(46, 125, 50, 0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .sitemap-section a:hover {
            background: rgba(46, 125, 50, 0.1);
            color: var(--primary-green);
            transform: translateX(4px);
            border-color: rgba(46, 125, 50, 0.3);
        }

        .sitemap-section a i {
            font-size: 0.875rem;
            opacity: 0.6;
        }

        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;
            margin-top: 4rem;
        }
