.php-areas-section {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 58px 110px 109px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 23px;
  height: 575px;
}

/* ── Orange overlay + bg image ── */
.php-areas-bg-color {
  position: absolute;
  inset: 0;
  background-color: #e15520;
  pointer-events: none;
}

.php-areas-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
}

/* ── Text ── */
.php-areas-heading {
  position: relative;
  margin: 0;
  font-family: 'Rockwell', 'Rockwell Nova', Georgia, serif;
  font-weight: 700;
  font-size: 35px;
  line-height: normal;
  color: #ffffff;
  text-align: center;
}

.php-areas-subtext {
  position: relative;
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
}

/* ════════════════════════════════
   Tablet  ≤ 1024px
════════════════════════════════ */
@media (max-width: 1024px) {
  .php-areas-section {
    padding: 48px 48px 72px;
    gap: 16px;
  }

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

  .php-areas-subtext {
    font-size: 18px;
  }
}

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

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

  .php-areas-subtext {
    font-size: 16px;
  }
}

