@import url('style.css');

/* Privacy Policy Specific Styles - Optimized for readability */
.llc-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    padding: 3rem 0;
    min-height: 50vh;
}

.llc-section .container {
    position: relative;
    z-index: 2;
}

/* Policy Content Styles */
.policy-content {
    margin-top: 2rem;
}

.policy-section {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
    color: #333333;
}

.policy-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.policy-section h2 i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    color: #667eea;
}

.policy-section p {
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.8;
    font-size: 1rem;
}

.policy-section li strong {
    color: #1a202c;
    font-weight: 600;
}

/* Contact Info Styles */
.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
    border: 1px solid #e2e8f0;
}

.contact-info p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: #2c3e50;
    font-size: 1rem;
}

.contact-info i {
    margin-right: 0.75rem;
    width: 20px;
    color: #667eea;
}

.contact-info strong {
    color: #1a202c;
}

/* Llc section text improvements */
.llc-section .text-white {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.llc-section h1 {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.llc-section .lead {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .llc-section {
        padding: 2rem 0;
        text-align: center;
        min-height: 40vh;
    }
    
    .llc-section h1 {
        font-size: 2.5rem;
    }
    
    .policy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .llc-section {
        min-height: 35vh;
        padding: 1.5rem 0;
    }
    
    .llc-section h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.2rem;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .llc-section {
        background: white !important;
        color: black !important;
        min-height: auto !important;
        padding: 1rem 0 !important;
    }
    
    .policy-section {
        box-shadow: none !important;
        border: 1px solid #ddd;
        page-break-inside: avoid;
        margin-bottom: 1rem;
        background: white !important;
    }
    
    .navbar, footer {
        display: none !important;
    }
    
    .policy-section h2,
    .policy-section p,
    .policy-section li {
        color: black !important;
    }
}

/* Accessibility improvements */
.policy-section:focus-within {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .policy-section {
        background: #ffffff;
        border: 2px solid #000000;
        color: #000000;
    }
    
    .policy-section h2,
    .policy-section p,
    .policy-section li {
        color: #000000 !important;
    }
    
    .llc-section {
        background: #000000 !important;
    }
    
    .llc-section h1,
    .llc-section p {
        color: #ffffff !important;
    }
}

/* Remove all animation styles */
.policy-section {
    /* No transitions or animations */
}

/* Ensure proper contrast ratios */
body {
    background-color: #f8fafc;
    color: #2c3e50;
}

/* Smooth scroll only */
html {
    scroll-behavior: smooth;
}

/* Section spacing */
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Improve readability */
.policy-section ul {
    padding-left: 1.5rem;
}

.policy-section li::marker {
    color: #667eea;
}

/* Icon improvements */
.bi {
    vertical-align: baseline;
}

/* Ensure minimum font sizes */
@media (max-width: 576px) {
    .policy-section p,
    .policy-section li,
    .contact-info p {
        font-size: 16px !important; /* Minimum readable size */
    }
} 