/* Legal Pages Styling */
.legal-page {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.legal-page h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #1a3c6e;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.legal-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #2c5aa0;
    margin: 25px 0 15px;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.legal-section address {
    font-style: normal;
    line-height: 1.6;
    margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-page {
        padding: 60px 0;
    }
    
    .legal-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 40px 0;
    }
    
    .legal-section {
        padding: 15px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
}
