/* Legal pages styling */

.legal-content {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-container h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-effective {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.legal-container section {
    margin-bottom: 40px;
}

.legal-container h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-container h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.legal-container p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-container ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal-container ul li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 6px 0 6px 24px;
    position: relative;
}

.legal-container ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.legal-container a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.legal-container strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Footer legal links */
.footer-legal-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

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

/* Responsive */
@media (max-width: 768px) {
    .legal-container h1 {
        font-size: 2rem;
    }

    .legal-container {
        padding: 0 16px;
    }
}
