.elementor-558 .elementor-element.elementor-element-9194105{--display:flex;}.elementor-558 .elementor-element.elementor-element-cb65e91{--spacer-size:100px;}.elementor-558 .elementor-element.elementor-element-663b0f1{--display:flex;}body.elementor-page-558:not(.elementor-motion-effects-element-type-background), body.elementor-page-558 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9FBFF;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e35e03b */: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;
}

.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

/* Header Styles */
.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.privacy-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.privacy-updated {
    font-size: 1.3rem;
    color: var(--gray-600);
    font-style: italic;
}

/* Content Styles */
.privacy-content {
    margin-bottom: 4rem;
}

.privacy-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);
}

.privacy-intro p {
    font-size: 1.3rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-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;
}

.privacy-section:hover {
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
}

.privacy-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);
}

.privacy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.privacy-section h3:first-of-type {
    margin-top: 0;
}

.privacy-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-section li {
    margin-bottom: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1.1rem;
}

.privacy-section strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Company About Section */
.company-about {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%);
    border-left: 4px solid var(--primary-500);
}

/* Company Info Styles */
.company-info {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    display: grid;
    gap: 0.75rem;
}

.company-item {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.company-item:last-child {
    border-bottom: none;
}

.company-item strong {
    color: var(--primary-600);
    display: inline-block;
    min-width: 150px;
}

/* Information Categories */
.info-category {
    margin: 2rem 0;
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-500);
}

.info-category:last-child {
    margin-bottom: 0;
}

/* Numbered Lists */
.numbered-list {
    counter-reset: item;
    padding-left: 0;
}

.numbered-list li {
    display: block;
    margin-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
}

.numbered-list li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-500);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Info in Contact Section */
.contact-info {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.contact-item {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Footer Styles */
.privacy-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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-container {
        padding: 3rem 2rem;
    }
    
    .privacy-title {
        font-size: 3rem;
    }
    
    .privacy-section {
        padding: 2.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.75rem;
    }
    
    .privacy-section h3 {
        font-size: 1.25rem;
    }
    
    .info-category {
        padding: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-link {
        display: inline-block;
    }
    
    .company-item strong {
        min-width: auto;
        display: block;
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 2rem 1.5rem;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-section {
        padding: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-intro {
        padding: 2rem;
    }
    
    .company-info {
        padding: 1.5rem;
    }
    
    .info-category {
        padding: 1.25rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .numbered-list li {
        padding-left: 2.5rem;
    }
    
    .numbered-list li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    body::before {
        display: none;
    }
    
    .privacy-container {
        max-width: none;
        padding: 0;
    }
    
    .privacy-section {
        box-shadow: none;
        border: 1px solid var(--gray-300);
        break-inside: avoid;
    }
    
    .footer-links {
        display: none;
    }
    
    .company-about {
        background: var(--white) !important;
    }
    
    .info-category {
        background: var(--white) !important;
    }
}/* End custom CSS */