.php-ben-section {
  background-color: #ffffff;
  padding: 103px 109px 110px;
  width: 100%;
  box-sizing: border-box;
}

/* ── Two-column layout ── */
.php-ben-columns {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
}

/* ── Left: heading + image ── */
.php-ben-left {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 560px;
}

.php-ben-heading {
  margin: 0;
  font-family: 'Rockwell', 'Rockwell Nova', Georgia, serif;
  font-weight: 700;
  font-size: 35px;
  line-height: normal;
  color: #112444;
}

.php-ben-image-wrap {
  flex: 1 0 0;
  min-height: 0;
  overflow: hidden;
  background-color: #ebebeb;
}

.php-ben-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Right: benefit cards ── */
.php-ben-right {
  flex-shrink: 0;
  width: 582px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.php-ben-card {
  display: flex;
  gap: 25px;
  align-items: center;
  background-color: #ecf2f8;
  padding: 17px 15px;
}

.php-ben-icon-wrap {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: #112444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.php-ben-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.php-ben-card-text {
  flex: 1 0 0;
  min-width: 0;
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #112444;
}

/* ════════════════════════════════
   Tablet  ≤ 1024px
════════════════════════════════ */
@media (max-width: 1024px) {
  .php-ben-section {
    padding: 64px 48px;
  }

  .php-ben-left {
    height: auto;
    min-height: 300px;
  }

  .php-ben-right {
    width: 100%;
    flex: 1 0 0;
  }

  .php-ben-heading {
    font-size: 28px;
  }

  .php-ben-card-text {
    font-size: 17px;
  }
}

/* ════════════════════════════════
   Mobile  ≤ 767px
════════════════════════════════ */
@media (max-width: 767px) {
  .php-ben-section {
    padding: 48px 20px;
  }

  .php-ben-columns {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .php-ben-left {
    width: 100%;
    display: block;
  }

  .php-ben-heading {
    margin-bottom: 16px;
  }

  .php-ben-image-wrap {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
  }

  .php-ben-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .php-ben-right {
    width: 100%;
  }

  .php-ben-heading {
    font-size: 26px;
  }

  .php-ben-card-text {
    font-size: 16px;
    line-height: 24px;
  }

  .php-ben-icon-wrap {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .php-ben-icon {
    width: 30px;
    height: 30px;
  }
}

