/* Start custom CSS */.bsj-transparency {
    --bsj-blue: #1f668f;
    --bsj-teal: #2a8c8c;
    --bsj-dark: #24313a;
    --bsj-muted: #5f6b72;
    --bsj-soft: #eef7f7;
    --bsj-soft-blue: #edf5fa;
    --bsj-border: #d8e8e8;
    --bsj-radius: 22px;

    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px 70px;
    color: var(--bsj-dark);
    font-family: inherit;
    line-height: 1.7;
  }

  .bsj-transparency h1,
  .bsj-transparency h2,
  .bsj-transparency h3 {
    color: var(--bsj-blue);
    line-height: 1.25;
    margin-top: 0;
  }

  .bsj-transparency h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    margin-bottom: 16px;
    text-align: center;
  }

  .bsj-transparency .bsj-lead {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
    font-size: 1.18rem;
    color: var(--bsj-muted);
  }

  .bsj-trust-box {
    background: var(--bsj-soft);
    border-left: 6px solid var(--bsj-teal);
    border-radius: var(--bsj-radius);
    padding: 28px 32px;
    margin: 34px 0;
    font-size: 1.08rem;
  }

  .bsj-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 34px 0 46px;
  }

  .bsj-card {
    background: #fff;
    border: 1px solid var(--bsj-border);
    border-radius: var(--bsj-radius);
    padding: 26px;
    box-shadow: 0 12px 30px rgba(31, 102, 143, 0.08);
  }

  .bsj-card strong {
    display: block;
    color: var(--bsj-blue);
    font-size: 1.18rem;
    margin-bottom: 8px;
  }

  .bsj-section {
    margin: 52px 0;
  }

  .bsj-section h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: 18px;
  }

  .bsj-section h3 {
    font-size: 1.35rem;
    margin-top: 28px;
    margin-bottom: 8px;
  }

  .bsj-check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
  }

  .bsj-check-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
  }

  .bsj-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bsj-teal);
    font-weight: 700;
  }

  .bsj-highlight {
    background: var(--bsj-soft-blue);
    border-radius: var(--bsj-radius);
    padding: 30px;
    margin: 34px 0;
  }

  .bsj-partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 22px 0;
    list-style: none;
  }

  .bsj-partner-list li {
    background: #fff;
    border: 1px solid var(--bsj-border);
    border-radius: 999px;
    padding: 10px 18px;
  }

  .bsj-hidden-note {
    background: #fff8e8;
    border: 1px dashed #d6a73f;
    border-radius: var(--bsj-radius);
    padding: 24px 28px;
    margin: 34px 0;
  }

  .bsj-final {
    background: linear-gradient(135deg, #1f668f, #2a8c8c);
    color: #fff;
    border-radius: var(--bsj-radius);
    padding: 36px;
    margin-top: 56px;
    text-align: center;
  }

  .bsj-final h2 {
    color: #fff;
    margin-bottom: 12px;
  }

  .bsj-final p {
    margin-bottom: 0;
    font-size: 1.12rem;
  }

  @media (max-width: 850px) {
    .bsj-card-grid {
      grid-template-columns: 1fr;
    }

    .bsj-transparency {
      padding: 28px 18px 54px;
    }

    .bsj-trust-box,
    .bsj-highlight,
    .bsj-hidden-note,
    .bsj-final {
      padding: 24px;
    }
  }/* End custom CSS */