:root {
            --primary-color: #2575fc;
            --secondary-color: #6a11cb;
            --dark-color: #2c3e50;
            --light-color: #f8f9fa;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --success-color: #28a745;
        }
        
        /* Module styling */
        .module-container {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            background-color: white;
        }
        
        .module-title {
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .module-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        }
        
        /* Terms content */
        .terms-content {
            padding: 0 1rem;
        }
        
        .terms-section {
            
            margin-bottom: 3rem;
            scroll-margin-top: 100px;
        }
        
        .terms-section-title {
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            list-style: none;
            color: var(--primary-color);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-color);
            font-weight: 600;
        }
        
        .terms-content h4 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
            font-weight: 600;
        }
        
        .terms-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            line-height: 1.7;
        }
        
        .terms-content ul {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        
        .terms-content li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .terms-content li:before {
            content: "•";
            color: var(--primary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .highlight-box {
            background-color: rgba(37, 117, 252, 0.05);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 4px 4px 0;
            transition: all 0.3s ease;
        }
        
        .highlight-box:hover {
            background-color: rgba(37, 117, 252, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .highlight-box.warning {
            border-left-color: var(--warning-color);
            background-color: rgba(255, 193, 7, 0.05);
        }
        
        .highlight-box.warning:hover {
            background-color: rgba(255, 193, 7, 0.1);
        }
        
        .highlight-box.danger {
            border-left-color: var(--danger-color);
            background-color: rgba(220, 53, 69, 0.05);
        }
        
        .highlight-box.danger:hover {
            background-color: rgba(220, 53, 69, 0.1);
        }
        
        .nav-anchor {
            display: block;
            position: relative;
            top: -100px;
            visibility: hidden;
        }
        
        /* Responsive adjustments */
        @media (max-width: 767.98px) {
            .module-container {
                padding: 1.5rem;
            }
            
            .terms-content {
                padding: 0;
            }
            
            .terms-section-title {
                font-size: 1.5rem;
            }
        }
        
        /* Table of contents */
        .toc-container {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .toc-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .toc-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .toc-list li {
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
        }
        
        .toc-list li:before {
            content: "→";
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }
        
        .toc-list a {
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .toc-list a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }