/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BASE ===== */
body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.7;
}

/* ===== PAGE LAYOUT ===== */
.fees-page {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.fees-container {
  width: 100%;
  max-width: 800px;
  background: #ffffff;
  padding: 45px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ===== HEADINGS ===== */
.fees-container h1 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 40px;
  color: steelblue;
}

.fees-section h2,
.bank-box h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  margin-top: 2rem;
  color: #1e40af;
}

/* ===== TEXT ===== */
.lead {
  margin-bottom: 15px;
}

.fees-section p {
  margin-top: 15px;
}

/* ===== LIST ===== */
.fees-list {
  padding-left: 20px;
  margin-top: 10px;
}

.fees-list li {
  margin-bottom: 10px;
}

/* ===== BANK BOX ===== */
.bank-box {
  margin-top: 40px;
  padding: 25px;
  background: #f0f4ff;
  border-radius: 12px;
}

/* ===== PAYMENT ACTION ===== */
.payment-action {
  margin-top: 50px;
  text-align: center;
}

.payment-action p {
  margin-bottom: 20px;
  font-weight: 500;
}

/* ===== ANIMATED BUTTON ===== */
.pay-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.pay-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .fees-container {
    padding: 30px 20px;
  }

  .fees-container h1 {
    font-size: 1.9rem;
  }

  .fees-section h2,
  .bank-box h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 375px) {
  .fees-container h1 {
    font-size: 1.7rem;
  }

  .pay-btn {
    padding: 12px 32px;
    font-size: 1rem;
  }
}
