.hero-banner p {
  width: 75%;
}

.package-section {
  padding: 80px 0 50px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* Geometric Pattern Overlay */
.package-pattern-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../assets/icons/blue-bg-pattern-left.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.package-pattern-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%; /* Constrain width so it doesn't overlap the left pattern */
  height: 100%;
  background: url("../assets/icons/blue-bg-pattern-right.png");
  background-repeat: no-repeat;
  background-position: top right; /* Explicitly pin the image to the top right */
  opacity: 1;
  pointer-events: none;
  z-index: 0; /* Ensure it stays behind the content but visible */
}

.pricing-grid {
  gap: 32px 28px;
  position: relative;
  z-index: 1;
}

.pricing-card {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.21);
}

.card-header {
  background-color: #0149af;
}

.card-header h3 {
  color: var(--color-text-white);
}

@media (max-width: 1300px) {
  .hero-banner p {
    width: 70%;
  }

  .pricing-grid {
    gap: 32px 20px;
  }

  .pricing-card {
    padding: 20px 15px;
  }
}

@media (max-width: 1100px) {
  .hero-banner p {
    width: 75%;
  }

  .pricing-grid {
    gap: 24px 20px;
  }

  .pricing-card:last-child {
    grid-column: auto;
  }

  .header-body-divider {
    margin-bottom: 24px;
  }

  .pricing-card {
    padding: 20px;
  }

  .feature-list {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .hero-banner p {
    width: 90%;
  }

  .package-section {
    padding: 65px 0 40px;
  }

  .package-pattern-left {
    bottom: -1%;
    background: url("../assets/icons/blue-bg-pattern-left-mob.png");
    background-repeat: no-repeat;
    background-position: bottom left;
  }

  .package-pattern-right {
    top: 1%;
    background: url("../assets/icons/blue-bg-pattern-right-mob.png");
    background-repeat: no-repeat;
    background-position: top right;
  }

  .pricing-grid {
    gap: 28px;
  }
}
