.lp-legal {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    min-height: calc(100vh - 200px);
    overflow-x: hidden;
}
.lp-legal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 24px;
}
.lp-legal-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--lp-primary);
    border-radius: 2px;
}
.lp-legal-lead {
    text-align: center;
    color: var(--lp-text-sub);
    font-size: 0.95rem;
    margin-bottom: 48px;
}
.lp-legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.07);
    padding: 48px 56px;
}
.lp-legal-content h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-primary);
    margin: 32px 0 12px;
    padding-left: 12px;
    border-left: 3px solid var(--lp-primary);
}
.lp-legal-content h2:first-child {
    margin-top: 0;
}
.lp-legal-content p,
.lp-legal-content li {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 8px;
}
.lp-legal-content ul {
    padding-left: 1.5em;
    margin: 8px 0 16px;
}
.lp-legal-content li {
    margin-bottom: 4px;
}
.lp-legal-content p {
    margin-bottom: 12px;
}
.lp-legal-date {
    text-align: right;
    color: var(--lp-text-light);
    font-size: 0.9rem;
    margin-top: 32px;
}
.lp-legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}
.lp-legal-table th,
.lp-legal-table td {
    padding: 16px 20px;
    border: 1px solid var(--lp-border);
    vertical-align: top;
    font-size: 0.95rem;
    line-height: 1.7;
}
.lp-legal-table th {
    background: var(--lp-bg-alt);
    color: var(--lp-text);
    font-weight: 700;
    text-align: left;
    width: 200px;
    white-space: nowrap;
}
.lp-legal-table td {
    color: #333;
}
@media (max-width: 768px) {
    .lp-legal {
        padding: 80px 0 40px;
        overflow: hidden;
    }
    .lp-legal-content {
        max-width: 100%;
        padding: 28px 20px;
    }
    .lp-legal-table th {
        width: 110px;
        font-size: 13px;
        padding: 12px 10px;
    }
    .lp-legal-table td {
        font-size: 13px;
        padding: 12px 10px;
    }
}
