.payment-section {
  position: relative;
  margin: 4rem auto;
  padding: 4.5rem 1.5rem 5rem;
  color: #EE007D;   /* pink text color */
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(2, 6, 19, 0.15);
}

.payment-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.1; /* subtle background */
  pointer-events: none;
  z-index: 1;
}

.payment-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.payment-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: #EE007D;
}

.payment-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.payment-content p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 830px;
  margin: 0 auto 1.75rem;
  color: #EE007D;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.payment-card {
  background: rgba(238, 0, 125, 0.08); /* subtle pink overlay */
  border: 1px solid rgba(238, 0, 125, 0.18);
  border-radius: 0.9rem;
  padding: 1.25rem;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.payment-card img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.payment-card span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #EE007D;
}

.payment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 0, 125, 0.45);
}

.payment-note {
  font-size: 0.95rem;
  color: rgba(238, 0, 125, 0.65);
}

@media (max-width: 768px) {
  .payment-section {
    padding: 3.5rem 1rem;
  }

  .payment-bg {
    display: none;
  }

  .payment-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}