.page-payment-methods {
  background-color: #F3F3F3;
  color: #404040;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-payment-methods__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top spacing to avoid header overlap */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-payment-methods__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Constrain max height for hero image */
  overflow: hidden;
}

.page-payment-methods__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure image covers the area without distortion */
}

.page-payment-methods__hero-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-payment-methods__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #025BE8; /* Use secondary color for emphasis */
}

.page-payment-methods__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods__cta-button {
  display: inline-block;
  background-color: #1266EC; /* Register button color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-payment-methods__cta-button:hover {
  background-color: #025BE8; /* Darker shade of blue for hover */
}

.page-payment-methods__intro-section,
.page-payment-methods__process-section,
.page-payment-methods__security-section,
.page-payment-methods__faq-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-payment-methods__section-title {
  font-size: 2.5rem;
  color: #025BE8;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-payment-methods__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
}

.page-payment-methods__options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods__option-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods__option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-payment-methods__option-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-payment-methods__card-title {
  font-size: 1.5rem;
  color: #025BE8;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__card-text {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #404040;
}

.page-payment-methods__card-link {
  display: inline-block;
  background-color: #1266EC;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-payment-methods__card-link:hover {
  background-color: #025BE8;
}

.page-payment-methods__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods__step-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  border-top: 5px solid #025BE8;
}

.page-payment-methods__step-title {
  font-size: 1.4rem;
  color: #025BE8;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-payment-methods__step-text {
  font-size: 1rem;
  color: #404040;
  margin-bottom: 20px;
}

.page-payment-methods__step-button {
  display: inline-block;
  background-color: #1266EC;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-payment-methods__step-button:hover {
  background-color: #025BE8;
}

.page-payment-methods__faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
}

.page-payment-methods__faq-question {
  font-size: 1.2rem;
  color: #025BE8;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-payment-methods__faq-answer {
  font-size: 1rem;
  color: #404040;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-payment-methods__hero-content {
    padding: 30px 15px;
  }

  .page-payment-methods__main-title {
    font-size: 2rem;
  }

  .page-payment-methods__description {
    font-size: 1rem;
  }

  .page-payment-methods__section-title {
    font-size: 2rem;
  }

  .page-payment-methods__options-grid,
  .page-payment-methods__process-steps {
    grid-template-columns: 1fr;
  }

  .page-payment-methods__option-image {
    height: 180px;
  }

  .page-payment-methods__option-card,
  .page-payment-methods__step-card,
  .page-payment-methods__faq-item {
    padding: 20px;
  }

  .page-payment-methods__option-image, .page-payment-methods__option-card img, .page-payment-methods__step-card img, .page-payment-methods__faq-item img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__main-title {
    font-size: 1.8rem;
  }

  .page-payment-methods__section-title {
    font-size: 1.8rem;
  }

  .page-payment-methods__cta-button,
  .page-payment-methods__card-link,
  .page-payment-methods__step-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}