
        body {
            font-family: 'Urbanist', sans-serif;
        }
        .fluid-bg {
            background: radial-gradient(circle at 50% 50%, rgba(191, 43, 55, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 0% 0%, rgba(191, 43, 55, 0.05) 0%, transparent 30%);
        }
        .prose h2 {
            font-weight: 700;
            font-size: 1.875rem;
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: #1e293b;
        }
        .prose p {
            margin-bottom: 1.25rem;
            line-height: 1.75;
            color: #475569;
        }
        .prose a {
            color: #bf2b37;
            font-weight: 700;
            text-decoration: underline;
            text-decoration-color: rgba(191, 43, 55, 0.35);
            text-underline-offset: 0.18em;
            transition: color 0.2s ease, text-decoration-color 0.2s ease;
        }
        .prose a:hover {
            color: #9f1f2b;
            text-decoration-color: rgba(191, 43, 55, 0.8);
        }
        .sticky-sidebar {
            position: sticky;
            top: 6rem;
        }
        .hover-glow:hover {
            box-shadow: 0 0 20px rgba(191, 43, 55, 0.3);
            transform: translateY(-2px);
            transition: all 0.2s ease-in-out;
        }
    
