/* Hero shapes */
        .hero-shape {
            position: absolute;
            opacity: 0.1;
        }

        .hero-shape-1 {
            top: 10%;
            right: 5%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .hero-shape-2 {
            bottom: 15%;
            left: 5%;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: float 10s ease-in-out infinite reverse;
        }

        .hero-shape-3 {
            top: 40%;
            left: 10%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
            border-radius: 50%;
            animation: pulse 6s ease-in-out infinite;
        }

        .hero-shape-4 {
            top: 20%;
            left: 30%;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
            border-radius: 20% 80% 80% 20% / 80% 20% 80% 20%;
            animation: rotate 15s linear infinite;
        }

        .hero-shape-5 {
            bottom: 10%;
            right: 15%;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 65%);
            border-radius: 40% 60% 60% 40% / 40% 50% 60% 50%;
            animation: morph 12s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) translateX(0);
            }

            50% {
                transform: translateY(-30px) translateX(20px);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.1;
            }

            50% {
                transform: scale(1.2);
                opacity: 0.15;
            }
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes morph {

            0%,
            100% {
                border-radius: 40% 60% 60% 40% / 40% 50% 60% 50%;
            }

            50% {
                border-radius: 60% 40% 40% 60% / 60% 50% 40% 50%;
            }
        }

        /* Light background for content section in dark mode */
        .dark .page-background {
            background-color: var(--color-bg-primary, #ffffff) !important;
        }

        .page-content h1 {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--color-primary-700, #1d4ed8);
            margin-top: 2rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--color-primary-200, #bfdbfe);
        }

        .page-content h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--color-primary-600, #2563eb);
            margin-top: 2rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .page-content h2::before {
            content: '';
            display: inline-block;
            width: 4px;
            height: 1.5rem;
            background: linear-gradient(to bottom, var(--color-primary-500, #3b82f6), var(--color-primary-600, #2563eb));
            border-radius: 2px;
        }

        .page-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-primary-600, #2563eb);
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .page-content p {
            margin-bottom: 1rem;
            line-height: 1.75;
        }

        .page-content ul,
        .page-content ol {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .page-content li {
            margin-bottom: 0.5rem;
            line-height: 1.75;
        }

        .page-content ul li {
            list-style-type: disc;
        }

        .page-content ul li::marker {
            color: var(--color-primary-500, #3b82f6);
        }

        .page-content ol li {
            list-style-type: decimal;
        }

        .page-content a {
            color: var(--color-primary-600, #2563eb);
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }

        .page-content a:hover {
            border-bottom-color: var(--color-primary-600, #2563eb);
        }

        .page-content strong {
            font-weight: 600;
            color: #1f2937;
        }

        .page-content blockquote {
            margin: 1.5rem 0;
            padding: 1rem 1.5rem;
            background: #f9fafb;
            border-left: 4px solid var(--color-primary-500, #3b82f6);
            border-radius: 0 0.5rem 0.5rem 0;
            font-style: italic;
            color: #4b5563;
        }

        .page-content table {
            width: 100%;
            margin: 1.5rem 0;
            border-collapse: collapse;
            font-size: 0.875rem;
        }

        .page-content th {
            background: #f9fafb;
            padding: 0.75rem 1rem;
            text-align: left;
            font-weight: 600;
            color: #374151;
            border: 1px solid #e5e7eb;
        }

        .page-content td {
            padding: 0.75rem 1rem;
            border: 1px solid #e5e7eb;
        }

        .page-content code {
            background: #f3f4f6;
            padding: 0.125rem 0.375rem;
            border-radius: 0.25rem;
            font-size: 0.875em;
            color: var(--color-primary-600, #2563eb);
        }

        .page-content pre {
            background: #1f2937;
            color: #e5e7eb;
            padding: 1rem;
            border-radius: 0.5rem;
            overflow-x: auto;
            margin: 1.5rem 0;
        }

        .page-content pre code {
            background: none;
            padding: 0;
            color: inherit;
        }

        .page-content hr {
            margin: 2rem 0;
            border: none;
            border-top: 1px solid #e5e7eb;
        }

        .page-content img {
            max-width: 100%;
            height: auto;
            border-radius: 0.5rem;
            margin: 1.5rem 0;
        }