
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* Sticky Header Styles */
        .sticky-header {
            transition: all 0.3s ease;
        }

        .sticky-header.scrolled {
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        /* Menu Animation */
        #mobile-menu.menu-open {
            transform: translateX(0);
        }

        #mobile-menu-overlay.menu-open {
            opacity: 1;
            visibility: visible;
        }

        body.menu-open {
            overflow: hidden;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Content section styling */
        .terms-section {
            scroll-margin-top: 120px;
        }

        /* Table of contents active state */
        .toc-link.active {
            color: #393186;
            font-weight: 600;
            border-left: 3px solid #393186;
            background-color: #f3f4f6;
        }

        /* Print styles */
        @media print {
            .no-print {
                display: none !important;
            }
            
            .terms-content {
                max-width: 100% !important;
            }
        }
