/* Legal Pages Styles */

/* Legal Content Section */
.legal-content {
    padding: 60px 0;
    min-height: 60vh;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
}

.legal-document p {
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-document h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2563eb;
}

.legal-document h2:first-of-type {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    margin: 2rem 0 1rem;
}

.legal-document ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.legal-document li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.legal-document li::before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.legal-document strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-document {
        padding: 2rem;
    }
    
    .legal-document h2 {
        font-size: 1.3rem;
    }
    
    .legal-document h3 {
        font-size: 1.1rem;
    }
}
