/* Legal Pages Styles */

.legal-main {
    min-height: calc(100vh - 160px);
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.legal-update {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.legal-content h2 {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #667eea;
    display: inline-block;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 25px;
    padding: 0;
}

.legal-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer links */
.footer-links {
    margin-top: 8px;
    font-size: 0.875rem;
    color: var(--text-muted, #888);
}

.footer-links a {
    color: var(--text-muted, #718096) !important;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-links span {
    color: var(--border-color, #ccc);
    margin: 0 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-main {
        padding: 20px 15px;
    }

    .legal-container {
        padding: 25px 20px;
    }

    .legal-title {
        font-size: 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.1rem;
    }
}
