
  .mb-shipping-statement {
    width: 100%;
    background: #f6f8fb;
    padding: 56px 20px 70px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2933;
  }

  .mb-shipping-wrap {
    max-width: 1080px;
    margin: 0 auto;
  }

  .mb-shipping-card {
    background: #ffffff;
    border: 1px solid #e6ebf1;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
  }

  .mb-shipping-header {
    padding: 42px 46px 34px;
    background: linear-gradient(135deg, #eef6ff 0%, #ffffff 58%, #f7fafc 100%);
    border-bottom: 1px solid #e8edf3;
  }

  .mb-shipping-label {
    display: inline-block;
    padding: 7px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #eaf4ff;
    color: #1f8fe5;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mb-shipping-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    color: #0f172a;
  }

  .mb-shipping-subtitle {
    margin: 16px 0 0;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.75;
    color: #52606d;
  }

  .mb-shipping-body {
    padding: 42px 46px 46px;
  }

  .mb-greeting {
    margin: 0 0 24px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
  }

  .mb-shipping-text {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.8;
    color: #344054;
  }

  .mb-policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 30px 0 34px;
  }

  .mb-policy-item {
    padding: 24px 22px;
    border: 1px solid #e7edf4;
    border-radius: 16px;
    background: #fbfdff;
    box-sizing: border-box;
  }

  .mb-policy-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #eaf4ff;
    color: #1f8fe5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
  }

  .mb-policy-item h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.4;
    color: #111827;
    font-weight: 800;
  }

  .mb-policy-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #52606d;
  }

  .mb-highlight {
    color: #1f8fe5;
    font-weight: 800;
  }

  .mb-shipping-note {
    padding: 24px 26px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e7edf4;
    font-size: 15.5px;
    line-height: 1.8;
    color: #344054;
  }

  .mb-contact-box {
    margin-top: 28px;
    padding: 26px 28px;
    border-radius: 16px;
    background: #0f172a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .mb-contact-box strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    color: #ffffff;
  }

  .mb-contact-box span {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
  }

  .mb-contact-box a {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
    background: #1f8fe5;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.25s ease;
  }

  .mb-contact-box a:hover {
    background: #1479c7;
    transform: translateY(-1px);
  }

  .mb-signature {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #344054;
  }

  .mb-signature strong {
    color: #111827;
  }

  @media (max-width: 900px) {
    .mb-policy-grid {
      grid-template-columns: 1fr;
    }

    .mb-shipping-header,
    .mb-shipping-body {
      padding-left: 26px;
      padding-right: 26px;
    }

    .mb-shipping-title {
      font-size: 28px;
    }

    .mb-contact-box {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  @media (max-width: 480px) {
    .mb-shipping-statement {
      padding: 34px 14px 46px;
    }

    .mb-shipping-header {
      padding: 30px 20px 26px;
    }

    .mb-shipping-body {
      padding: 30px 20px 34px;
    }

    .mb-shipping-title {
      font-size: 24px;
    }

    .mb-shipping-subtitle,
    .mb-shipping-text,
    .mb-shipping-note {
      font-size: 15px;
    }

    .mb-contact-box {
      padding: 22px 20px;
    }

    .mb-contact-box a {
      width: 100%;
      text-align: center;
      box-sizing: border-box;
    }
  }
