/* Legal Pages Specific Styles */

.legal-content {
    padding: 140px 0 80px;
}

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

.legal-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-last-updated {
    color: #666;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #EEE;
    padding-bottom: 10px;
}

.legal-section h3 {
    color: var(--dark-text);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-section ul,
.legal-section ol {
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 30px;
}

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

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--secondary-color);
}

/* Responsive styles for legal pages */
@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.6rem;
    }
    
    .legal-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section {
        padding: 0 10px;
    }
}
