/* =========================
   PAGE WRAPPER
========================= */
.payment-page {
  background: #ececec;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* =========================
   CONTAINER
========================= */
.payment-container {
  width: 100%;
  padding: 60px 20px;
}

/* =========================
   CARD
========================= */
.payment-card {
  background: #ffffff;
  max-width: 600px;
  margin: 0 auto;
  padding: 50px 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* =========================
   TITLE
========================= */
.payment-card h1 {
  color: #570000;
  margin-bottom: 15px;
}

/* =========================
   DESCRIPTION
========================= */
.payment-description {
  color: #555555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* =========================
   FEATURES LIST
========================= */
.payment-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.payment-features li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333333;
}

/* =========================
   BUTTON
========================= */
.payment-btn {
  display: inline-block;
  background: #570000 !important;
  color: #ffffff !important;
  padding: 14px 35px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  margin-bottom: 20px;
}

/* Hover */
.payment-btn:hover {
  background: #3d0000;
  transform: translateY(-2px);
}

/* Click */
.payment-btn:active {
  transform: scale(0.97);
}

/* =========================
   HELP TEXT
========================= */
.payment-help {
  font-size: 0.9rem;
  color: #777777;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1400px) {
  .payment-card {
    padding: 30px 25px;
    width: 90vw !important;
    height: auto;
  }

  .payment-card h1 {
    font-size: 2rem;
  }
}