.box_mlegal {
    margin: 100px auto 60px auto;
    max-width: 800px;
    width: 90%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    padding: 48px 36px 36px 36px;
    display: flex;
    flex-direction: column;
    color: #222;
    font-size: 18px;
    line-height: 1.7;
}

.box_mlegal h1 {
    font-size: 2.4rem;
    color: var(--pcolor, #2d2d2d);
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: left;
    width: 100%;
}

.box_mlegal h2 {
    font-size: 1.4rem;
    color: var(--scolor, #bfa046);
    margin-top: 32px;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.box_mlegal ul {
    margin: 0 0 18px 24px;
    padding: 0;
    list-style: disc inside;
}

.box_mlegal ul ul {
    margin-top: 6px;
    margin-bottom: 6px;
    list-style: circle inside;
}

.box_mlegal li {
    margin-bottom: 7px;
    font-size: 1.05em;
}

.box_mlegal p {
    margin-bottom: 18px;
    color: #333;
}

.box_mlegal a {
    color: var(--scolor, #bfa046);
    text-decoration: underline;
    transition: color 0.2s;
    word-break: break-all;
}

.box_mlegal a:hover {
    color: var(--pcolor, #2d2d2d);
    text-decoration: none;
}

@media (max-width: 600px) {
    .box_mlegal {
        padding: 24px 8px 18px 8px;
        font-size: 16px;
    }
    .box_mlegal h1 {
        font-size: 1.5rem;
    }
    .box_mlegal h2 {
        font-size: 1.1rem;
    }
}