/* ===== MAIN WRAPPER (SAFE) ===== */
.legal-shell {
    width: 100%;
    background: #f8f9fb;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

/* ===== INNER FRAME ===== */
.legal-shell .legal-frame {
    max-width: 900px;
    width: 100%;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===== HEADINGS ===== */
.legal-shell h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.legal-shell .updated {
    color: #777;
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
}

/* ===== SECTION ===== */
.legal-shell section {
    margin-bottom: 30px;
}

.legal-shell h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
    line-height: 1.4;
    word-break: break-word;
}

.legal-shell p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: justify;
}

.legal-shell ul {
    padding-left: 20px;
}

.legal-shell li {
    margin-bottom: 8px;
    color: #555;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 768px) {
    .legal-shell .legal-frame {
        padding: 25px;
    }

    .legal-shell h1 {
        font-size: 28px;
    }

    .legal-shell h2 {
        font-size: 20px;
    }

    .legal-shell p {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .legal-shell {
        padding: 20px 10px;
    }

    .legal-shell .legal-frame {
        padding: 20px;
    }

    .legal-shell h1 {
        font-size: 24px;
    }

    .legal-shell h2 {
        font-size: 18px;
    }

    .legal-shell p {
        font-size: 14px;
    }
}