body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #f6f7fb;
    color: #1a1a1a;
}

.legal-container {
    max-width: 860px;
    margin: 80px auto;
    padding: 48px 56px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.legal-header {
    margin-bottom: 32px;
    border-bottom: 1px solid #ececec;
    padding-bottom: 24px;
}

.legal-header h1 {
    font-size: 28px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.legal-header p {
    font-size: 14px;
    color: #666;
}

.legal-content h2 {
    margin-top: 32px;
    font-size: 18px;
    font-weight: 600;
}
.legal-content {
    counter-reset: section;
}
.legal-content h2::before {
    counter-increment: section;
    content: counter(section) ". ";
    color: #6b7cff;
}


.legal-content p {
    line-height: 1.75;
    margin-top: 12px;
    font-size: 15px;
}

.legal-content ul {
    margin-top: 12px;
    padding-left: 20px;
}

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

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #ececec;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .legal-container {
        margin: 32px 16px;
        padding: 32px 24px;
    }

    .legal-header h1 {
        font-size: 22px;
    }
}
