/* Legal Pages */
.legal-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 10rem 5% 6rem;
}

.legal-hero {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin: 1.25rem 0 0.75rem;
}

.legal-hero p {
    color: #64748b;
    font-size: 0.9rem;
}

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.legal-content p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.8;
}

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

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

.legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.legal-list li {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}

.legal-list li::before {
    content: '✦';
    color: #10b981;
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: 0.3rem;
}

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

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