
        :root {
            --primary: #0a47aa;
            --secondary: #174ea6;
            --accent: #38bdf8;
            --light: #f5f9ff;
            --dark: #1a2a4a;
            --text: #1a2a4a;
            --text-light: #4d8acb;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: #fff;
            margin: 0;
            padding: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .terms-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-top:40px;
        }
        
        .terms-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb li:not(:last-child):after {
            content: "/";
            margin-left: 10px;
            color: white;
        }
        
        /* Main Content Styles */
        .terms-content {
            padding: 60px 0;
        }
        
        .terms-section {
            margin-bottom: 40px;
        }
        
        .terms-section h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        
        .terms-section h3 {
            color: var(--secondary);
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }
        
        .terms-section p {
            margin-bottom: 15px;
        }
        
        .terms-section ul, .terms-section ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .terms-section li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .terms-section ul li:before {
            content: "\f054";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--accent);
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 12px;
        }
        
        .terms-section ol {
            list-style-type: decimal;
        }
        
        /* Services Quick Links */
        .services-sidebar {
            background-color: var(--light);
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 40px;
        }
        
        .services-sidebar h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        
        .services-sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .services-sidebar li {
            margin-bottom: 10px;
        }
        
        .services-sidebar a {
            color: var(--text);
            text-decoration: none;
            display: flex;
            align-items: center;
            padding: 8px 0;
            transition: all 0.3s ease;
        }
        
        .services-sidebar a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .services-sidebar i {
            margin-right: 10px;
            color: var(--accent);
            width: 20px;
            text-align: center;
        }
        
        /* Highlight Box */
        .highlight-box {
            background-color: var(--light);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 4px 4px 0;
        }
        
        /* Responsive Layout */
        @media (min-width: 992px) {
            .terms-main {
                display: flex;
                gap: 40px;
            }
            
            .terms-document {
                flex: 3;
            }
            
            .services-sidebar {
                flex: 1;
                position: sticky;
                top: 20px;
                height: fit-content;
            }
        }
        
        /* Footer Styles */
        .terms-footer {
            background-color: var(--dark);
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .terms-footer p {
            margin: 0;
        }
