.elementor-29468 .elementor-element.elementor-element-b638168{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* QR Scanner Pro - Legal Documents Styles */
:root {
    --primary-color: #00695C;
    --primary-light: #4DB6AC;
    --text-color: #333;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --gray-light: #f9f9f9;
    --gray-border: #eee;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-border);
}

.logo {
    font-size: 2rem;
    margin-bottom: 10px;
}

.app-name {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.tagline {
    color: #666;
    font-size: 1rem;
}

/* Language Navigation */
.language-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.language-nav a {
    padding: 8px 12px;
    background: var(--white);
    text-decoration: none;
    border-radius: 6px;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-border);
    font-size: 0.9rem;
}

.language-nav a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.language-nav a.active {
    background: var(--primary-color);
    color: var(--white);
    font-weight: bold;
}

/* Document Selection */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.doc-card {
    border: 1px solid var(--gray-border);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--white);
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.doc-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.doc-card p {
    color: #666;
    margin-bottom: 20px;
}

.doc-card .btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
    margin: 5px;
}

.doc-card .btn:hover {
    background: var(--primary-light);
}

.doc-card .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.doc-card .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Legal Document Content */
h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
    text-align: center;
}

h2 {
    color: var(--text-color);
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    padding: 15px;
    background: var(--gray-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 6px 6px 0;
    text-align: center;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.7;
}

ul, ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
}

strong {
    color: var(--primary-color);
    font-weight: 600;
}

.highlight {
    background: #fff3cd;
    padding: 15px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
    border-radius: 0 6px 6px 0;
}

.warning {
    background: #f8d7da;
    padding: 15px;
    border-left: 4px solid #dc3545;
    margin: 20px 0;
    border-radius: 0 6px 6px 0;
}

.success {
    background: #d4edda;
    padding: 15px;
    border-left: 4px solid #28a745;
    margin: 20px 0;
    border-radius: 0 6px 6px 0;
}

/* Contact Section */
.contact-info {
    background: var(--gray-light);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-border);
    text-align: center;
    color: #666;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
        margin: 5px;
    }
    
    .language-nav {
        gap: 8px;
        justify-content: center;
    }
    
    .language-nav a {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .app-name {
        font-size: 1.4rem;
    }
    
    .language-nav {
        gap: 5px;
        padding: 15px;
    }
    
    .language-nav a {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .doc-card {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        padding: 0;
    }
    
    .container {
        box-shadow: none;
        max-width: none;
        padding: 20px;
    }
    
    .language-nav,
    .docs-grid,
    .header {
        display: none;
    }
    
    h1 {
        color: black;
    }
    
    h2, h3 {
        color: black;
    }
    
    .last-updated {
        background: none;
        border: 1px solid #ddd;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e0e0e0;
        --bg-color: #121212;
        --white: #1e1e1e;
        --gray-light: #2a2a2a;
        --gray-border: #333;
    }
    
    .language-nav a {
        background: #2a2a2a;
        color: #e0e0e0;
        border-color: #333;
    }
    
    .doc-card {
        background: #1e1e1e;
        border-color: #333;
    }
}/* End custom CSS */