/* Legal Pages Styles */

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-nav {
    margin-bottom: 40px;
}

.back-link {
    color: #667eea;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #764ba2;
}

.legal-content {
    flex: 1;
}

.legal-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ccc;
    margin: 20px 0 10px;
}

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

.legal-content ul {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

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

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

.legal-content strong {
    color: #ddd;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

.legal-footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Mobile adjustments */
@media (max-width: 600px) {
    .legal-container {
        padding: 20px 15px;
    }

    .legal-content h1 {
        font-size: 1.5rem;
    }

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