.elementor-420 .elementor-element.elementor-element-962662a{--display:flex;}body.elementor-page-420:not(.elementor-motion-effects-element-type-background), body.elementor-page-420 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9FBFF;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-55a0f1c */:root {
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --green-500: #10b981;
    --red-500: #ef4444;
    --scroll-progress: 0%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.7;
    position: relative;
}

/* Scroll Progress Bar */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: var(--scroll-progress);
    height: 3px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
    z-index: 1000;
    transition: width 0.1s ease;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

/* Header Styles */
.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.terms-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.terms-updated {
    font-size: 1.3rem;
    color: var(--gray-600);
    font-style: italic;
}

/* Content Styles */
.terms-content {
    margin-bottom: 4rem;
}

.terms-intro {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    margin-bottom: 4rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.terms-intro p {
    font-size: 1.3rem;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.8;
}

.terms-section {
    background: var(--white);
    padding: 3.5rem;
    margin-bottom: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

.terms-section:hover {
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
}

.terms-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.terms-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.terms-section li {
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.1rem;
}

.terms-section strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Company Info Styles */
.company-info {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    list-style: none;
}

.company-info li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.company-info li:last-child {
    margin-bottom: 0;
}

/* Definitions Styles */
.definitions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.definition-item {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-500);
}

.definition-item strong {
    color: var(--primary-600);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Footer Styles */
.terms-footer {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    text-align: center;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.footer-link:hover {
    background: var(--primary-50);
    color: var(--primary-600);
    text-decoration: underline;
}

.footer-text {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Table of Contents (Optional Enhancement) */
.toc {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: sticky;
    top: 2rem;
    z-index: 10;
}

.toc h3 {
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.toc ul {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.toc a:hover {
    color: var(--primary-500);
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 3rem 2rem;
    }
    
    .terms-title {
        font-size: 3rem;
    }
    
    .terms-section {
        padding: 2.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.75rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-link {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 2rem 1.5rem;
    }
    
    .terms-title {
        font-size: 2.5rem;
    }
    
    .terms-section {
        padding: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-intro {
        padding: 2rem;
    }
    
    .company-info {
        padding: 1.5rem;
    }
    
    .definition-item {
        padding: 1.25rem;
    }
}

/* Print Styles */
@media print {
    body::before {
        display: none;
    }
    
    .terms-container {
        max-width: none;
        padding: 0;
    }
    
    .terms-section {
        box-shadow: none;
        border: 1px solid var(--gray-300);
        break-inside: avoid;
    }
    
    .footer-links {
        display: none;
    }
}/* End custom CSS */