/* Legal pages specific styles (Privacy Policy & Terms of Service) */

html {
    scroll-behavior: smooth;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.legal-container {
    background-color: #f9fafb;
    padding: 60px 20px;
    min-height: calc(100vh - 140px);
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.legal-header .last-updated {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.legal-content {
    line-height: 1.7;
    color: #374151;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 10px;
    font-family: 'Poppins', Arial, sans-serif;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin: 30px 0 15px 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin: 25px 0 12px 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.legal-content p {
    margin: 0 0 16px 0;
    font-size: 1rem;
    line-height: 1.7;
}

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

.legal-content li {
    margin: 8px 0;
    line-height: 1.6;
}

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

.legal-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content .highlight {
    background-color: #fef3c7;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.table-of-contents {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.table-of-contents h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 20px 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin: 8px 0;
}

.table-of-contents a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.contact-info {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 20px 30px;
    margin: 30px 0;
}

.contact-info h4 {
    margin: 0 0 10px 0;
}

.contact-info p {
    margin: 5px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .legal-container {
        padding: 40px 15px;
    }
    
    .legal-page {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 30px 20px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.3rem;
    }
    
    .table-of-contents {
        padding: 20px;
    }
}
