/* Legal pages */
.legal {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 140px 24px 80px;
}

.legal h1 {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.legal-date {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.legal h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.legal h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.legal ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.legal a {
    color: var(--accent);
    text-decoration: none;
}

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