.maincontent {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

#legal_section {
    position: relative;
    padding: 85px 5%;
    z-index: 0;
}
.legal-wrapper {
    max-width: 1000px;
    width: 100%;
    margin-inline: auto;
}
.legal-wrapper p {
    font-size: 1rem;
}

.legal-list {
    list-style: none;
    margin: 60px auto 20px;
    padding: 0;
}
.legal-item {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e4e8;
}
.legal-item h2 {
    position: relative;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 20px 0 25px;
    padding-left: 40px;
}
.legal-num {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green);
    color: #fff;
    width: 28px;
    height: 28px;
    line-height: 1em;
    border-radius: 50%;
    font-size: 1.05rem;
}
.legal-sub-list {
    list-style: none;
    margin: 20px auto;
    padding: 0 0 0 8px;
}
.legal-sub-item:first-child {
    margin-bottom: 18px;
}
.legal-sub-item p {
    position: relative;
    font-size: .95rem;
    padding-left: 20px;
}
.legal-sub-item p::before,
.legal-sub-item p::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
}
.legal-sub-item p::before {
    top: 8px;
    left: 0;
    background-color: var(--accent-color);
}
.legal-sub-item p::after {
    top: 12px;
    left: 4px;
    background-color: var(--green);
}

@media (max-width: 480px) {
    #legal_section {
        padding-inline: 20px;
    }
}