.page-resources-payment-methods {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-payment-methods__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: var(--header-offset, 120px);
}

.page-resources-payment-methods__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-payment-methods__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-payment-methods__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
  border-radius: 10px;
}

.page-resources-payment-methods__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-resources-payment-methods__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-payment-methods__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-payment-methods__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-payment-methods__btn--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-payment-methods__btn--register:hover {
  background-color: #f0f0f0;
}

.page-resources-payment-methods__btn--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-payment-methods__btn--login:hover {
  background-color: #e0a53a;
}

.page-resources-payment-methods__content-area {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-resources-payment-methods__article-header {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.page-resources-payment-methods__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-resources-payment-methods__intro-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: #555555;
}

.page-resources-payment-methods__back-link {
  display: inline-block;
  margin-top: 20px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-payment-methods__back-link:hover {
  text-decoration: underline;
}

.page-resources-payment-methods__article-content h3 {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-resources-payment-methods__article-content h4 {
  font-size: 1.4em;
  color: #FCBC45;
  margin-top: 30px;
  margin-bottom: 10px;
}

.page-resources-payment-methods__article-content p {
  margin-bottom: 15px;
  color: #333333;
  font-size: 1.05em;
}

.page-resources-payment-methods__article-content a {
  color: #FCBC45;
  text-decoration: none;
}

.page-resources-payment-methods__article-content a:hover {
  text-decoration: underline;
}

.page-resources-payment-methods__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-payment-methods__list li {
  margin-bottom: 8px;
  color: #333333;
}

.page-resources-payment-methods__note {
  font-style: italic;
  color: #777777;
  margin-top: 20px;
  padding: 10px 15px;
  background-color: #f9f9f9;
  border-left: 4px solid #FCBC45;
}

.page-resources-payment-methods__payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.page-resources-payment-methods__payment-card {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-resources-payment-methods__payment-card:hover {
  transform: translateY(-5px);
}

.page-resources-payment-methods__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page-resources-payment-methods__card-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-resources-payment-methods__card-text {
  font-size: 0.95em;
  color: #555555;
}

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

.page-resources-payment-methods__feature-item {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-payment-methods__feature-icon {
  width: 200px; /* Minimum size requirement */
  height: 150px; /* Minimum size requirement */
  object-fit: contain;
  margin-bottom: 15px;
}

.page-resources-payment-methods__feature-title {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
}

.page-resources-payment-methods__feature-text {
  font-size: 0.9em;
  color: #555555;
}

.page-resources-payment-methods__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background-color: #000000; /* Main color */
  border-radius: 10px;
  color: #FFFFFF;
}

.page-resources-payment-methods__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.page-resources-payment-methods__cta-section .page-resources-payment-methods__btn {
  margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-payment-methods__hero-title {
    font-size: 2em;
  }

  .page-resources-payment-methods__hero-description {
    font-size: 1em;
  }

  .page-resources-payment-methods__hero-actions {
    flex-direction: column;
  }

  .page-resources-payment-methods__btn {
    width: 80%;
    margin: 5px auto;
  }

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

  .page-resources-payment-methods__article-content h3 {
    font-size: 1.5em;
  }

  .page-resources-payment-methods__article-content h4 {
    font-size: 1.2em;
  }

  .page-resources-payment-methods__content-area {
    margin: 20px auto;
    padding: 0 15px;
  }

  /* Ensure all images within content area are responsive and not too small */
  .page-resources-payment-methods__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-
  }

  .page-resources-payment-methods__feature-icon {
    width: 200px;
    height: 150px;
  }

  .page-resources-payment-methods__payment-card .page-resources-payment-methods__card-image {
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  .page-resources-payment-methods__hero-section {
    min-height: 400px;
  }
}