
        /* --- 1. Basic Settings & Variables --- */
        :root {
            --primary-blue: #003366;
            --accent-orange: #ff6600;
            --text-dark: #2c3e50;
            --text-light: #555;
            --bg-light: #f8f9fa;
            --border-color: #e9ecef;
            --sidebar-width: 280px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
         font-family: Cambria, Georgia, "Times New Roman", serif
            line-height: 1.7;
            color: var(--text-dark);
            background-color: #fff;
            scroll-behavior: smooth;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        /* --- 2. Header Hero Section --- */
        .page-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        .page-header h1 { font-size: 2.5rem; margin-bottom: 10px; font-weight: 700; }
        .page-header p { font-size: 1.1rem; opacity: 0.9; }
        .last-updated {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 15px;
        }

        /* --- 3. Page Layout (Sidebar + Content) --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: var(--sidebar-width) 1fr; /* Fixed sidebar, adaptive content */
            gap: 60px;
            position: relative;
        }

        /* --- 4. Sidebar Navigation (Sticky TOC) --- */
        aside.toc-sidebar {
            position: sticky;
            top: 40px; /* Distance from viewport top */
            height: fit-content;
            border-right: 1px solid var(--border-color);
            padding-right: 20px;
        }
        
        .toc-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .toc-list li { margin-bottom: 10px; }
        .toc-list a {
            display: block;
            color: var(--text-light);
            font-size: 0.95rem;
            padding: 8px 12px;
            border-radius: 4px;
            border-left: 3px solid transparent;
        }
        
        /* Active State Style */
        .toc-list a:hover, .toc-list a.active {
            background-color: #f0f4f8;
            color: var(--primary-blue);
            border-left-color: var(--accent-orange);
            font-weight: 600;
        }

        /* --- 5. Main Content Area --- */
        .legal-content section {
            margin-bottom: 50px;
            /* Offset for anchor links so text isn't hidden under headers */
            scroll-margin-top: 40px; 
        }

        .legal-content h2 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--bg-light);
        }

        .legal-content p { margin-bottom: 15px; color: var(--text-light); text-align: justify; }
        
        /* List Styles */
        .legal-content ul.content-list { list-style: disc; padding-left: 20px; margin-bottom: 20px; color: var(--text-light); }
        .legal-content ul.content-list li { margin-bottom: 8px; }

        /* Alert/Notice Box */
        .alert-box {
            background-color: #fff8e1;
            border-left: 4px solid var(--accent-orange);
            padding: 20px;
            border-radius: 4px;
            margin: 20px 0;
            color: #5d4037;
        }
        .alert-box strong { color: #d84315; }

        /* --- 6. Responsive Design --- */
        @media (max-width: 900px) {
            .container { grid-template-columns: 1fr; } /* Single column */
            
            aside.toc-sidebar {
                position: static; /* Remove sticky on mobile */
                border-right: none;
                border-bottom: 1px solid var(--border-color);
                padding-bottom: 30px;
                margin-bottom: 30px;
            }
            
            /* Two columns for TOC on mobile */
            .toc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        }
        @media (max-width: 600px) {
            .toc-list { grid-template-columns: 1fr; }
            .page-header h1 { font-size: 2rem; }
        }
    