/* General Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* -------------------------------
   How to Pay Hero Section
--------------------------------- */
.pay-hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height for consistency */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Dark overlay for text contrast */
  z-index: 1;
}

.pay-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

/* Matching typography to other hero sections */
.hero-main-text {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeInSlide 1s forwards ease;
}

.hero-main-text .highlight-text {
  color: #00A650;
}

.hero-subtext {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  animation: fadeInSlide 1s forwards ease 0.5s;
}

.hero-tagline {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.4;
  animation: fadeInSlide 1s forwards ease 1s;
}

/* Fade-In Animation (consistent with previous pages) */
@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   Payment Methods Section
================================ */
.payment-methods {
  background-color: #111;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.payment-methods .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #00A650;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.method-card {
  background-color: #222;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.method-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00A650;
}

.method-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #fff;
}

.method-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #ccc;
}

/* ================================
   Payment Instructions Section
================================ */
.payment-instructions {
  background-color: #1a1a1a;
  padding: 4rem 2rem;
  color: #fff;
  text-align: center;
}

.payment-instructions .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #00A650;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  background-color: #2a2a2a;
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: scale(1.03);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00A650;
}

.step-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #fff;
}

.step-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #ccc;
}

/* ================================
   FAQ Section
================================ */
.payment-faq {
  background-color: #111;
  padding: 4rem 2rem;
  color: #fff;
  text-align: left;
}

.payment-faq .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #00A650;
}

.faq-item {
  border-bottom: 1px solid #333;
  padding: 1.5rem 0;
  cursor: pointer;
}

.faq-question {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: #00A650;
  margin: 0;
}

.faq-answer {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #ccc;
  display: none;
}

/* Active FAQ Answer */
.faq-item.active .faq-answer {
  display: block;
}

/* ================================
   Responsive Adjustments
================================ */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-tagline {
    font-size: 1rem;
  }
  .step-title {
    font-size: 1.25rem;
  }
  .step-description {
    font-size: 0.9rem;
  }
}
