  .section-body {
    padding: 60px 0;
    background-color: #f8f9fa;
  }

  .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .two-column-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
  }

  .text-column,
  .image-column {
    flex: 1;
    min-width: 300px;
  }

  .text-column h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #1a3c6e;
    line-height: 1.2;
  }

  .text-column h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: #2c5282;
  }

  .text-column p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.3rem;
    color: #444;
  }


  .check-list {
    padding-left: 1.4rem;
    margin: 1.2rem 0 2rem;
    font-size: 1.25rem;
    line-height: 1.7;
    list-style-type: none;
  }

  .check-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
  }

  .check-list li:before {
    content: "✓ ";
    color: #38a169;
    font-weight: bold;
    list-style-type: none;
  }
  
  .check-list-bullet {
    padding-left: 2.0rem;
    margin: 1.2rem 0 2rem;
    font-size: 1.25rem;
    line-height: 1.7;
  }

  .highlight {
    font-weight: 600;
    font-size: 1.18rem;
    color: #2b6cb0;
    padding: 1rem 0;
  }

  .cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #c53030;
    margin-top: 2rem;
  }

  .image-column {
    display: flex;
    justify-content: center;
  }

  .image-wrapper {
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }

  .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  .image-caption {
    background-color: rgba(0,0,0,0.7);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.95rem;
  }

  /* ────────────────────────────────────────────────
     TABLET & MOBILE → image on top, text below, smaller gap
  ──────────────────────────────────────────────── */
  @media (max-width: 991px) {
    .two-column-layout {
      flex-direction: column;
      gap: 24px;           /* smaller gap on tablet/mobile */
    }

    .text-column  { order: 1; }
    .image-column { order: 2; }
    
    .text-column h2 {
      font-size: 2rem;
      text-align: center;
    }
  }

  @media (max-width: 576px) {
    .section-body {
      padding: 40px 0;
    }
    
    .text-column h2 {
      font-size: 1.8rem;
    }
    
    .two-column-layout {
      gap: 20px;           /* even tighter on small phones */
    }
  }