/* Legal Pages Stylesheet - Santelys */

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.8;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-header img {
    margin-bottom: 20px;
}

.legal-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin: 20px 0 10px;
    line-height: 1.3;
}

.legal-header .subtitle {
    font-size: 18px;
    color: #4a5568;
    margin: 10px 0;
    font-weight: 500;
}

.legal-header .update-date {
    font-size: 14px;
    color: #718096;
    font-style: italic;
    margin-top: 10px;
}

.legal-content {
    font-size: 16px;
    color: #2d3748;
}

.legal-content p.intro {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f7fafc;
    border-left: 4px solid #667eea;
    border-radius: 4px;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 16px;
    text-align: justify;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 20px;
    padding-left: 20px;
}

.legal-content ul {
    list-style-type: disc;
}

.legal-content ol {
    list-style-type: decimal;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-content strong {
    font-weight: 600;
    color: #1a202c;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.legal-content a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.contact-info {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #667eea;
}

.contact-info p {
    margin-bottom: 8px;
    text-align: left;
}

.contact-info strong {
    color: #667eea;
    font-size: 18px;
}

.note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 15px;
    color: #856404;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: #718096;
}

.legal-footer hr {
    margin: 30px 0;
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #cbd5e0, transparent);
}

.legal-footer .copyright {
    margin-top: 20px;
    font-size: 13px;
    color: #a0aec0;
}

/* Print Styles */
@media print {
    .legal-container {
        max-width: 100%;
        box-shadow: none;
        padding: 20px;
    }

    .legal-header {
        page-break-after: avoid;
    }

    .legal-content section {
        page-break-inside: avoid;
    }

    .legal-content h2 {
        page-break-after: avoid;
    }

    .legal-content a {
        color: #2d3748;
        text-decoration: underline;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .legal-container {
        padding: 20px 15px;
        box-shadow: none;
    }

    .legal-header h1 {
        font-size: 24px;
    }

    .legal-header .subtitle {
        font-size: 16px;
    }

    .legal-content {
        font-size: 15px;
    }

    .legal-content h2 {
        font-size: 20px;
    }

    .legal-content h3 {
        font-size: 18px;
    }

    .legal-content p.intro {
        font-size: 15px;
        padding: 15px;
    }

    .contact-info {
        padding: 16px;
    }

    .legal-content ul,
    .legal-content ol {
        margin-left: 10px;
        padding-left: 15px;
    }

    .legal-content p {
        text-align: left;
    }
}

/* Dark Mode Support (optional) */
@media (prefers-color-scheme: dark) {
    .legal-container {
        background-color: #1a202c;
        color: #e2e8f0;
    }

    .legal-header h1,
    .legal-content h2,
    .legal-content h3,
    .legal-content strong {
        color: #f7fafc;
    }

    .legal-header .subtitle {
        color: #cbd5e0;
    }

    .legal-content {
        color: #e2e8f0;
    }

    .legal-content p.intro {
        background-color: #2d3748;
        color: #e2e8f0;
    }

    .contact-info {
        background-color: #2d3748;
    }

    .note {
        background-color: #744210;
        color: #fef3c7;
    }

    .legal-footer {
        color: #a0aec0;
    }
}
