.page-payment-methods {
  padding-top: var(--header-offset, 120px);
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-payment-methods__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

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

.page-payment-methods__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 10px;
  color: #FFFFFF;
}

.page-payment-methods__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-payment-methods__button {
  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;
  min-width: 120px;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-payment-methods__button--register:hover {
  background-color: #F0F0F0;
  color: #000000;
}

.page-payment-methods__button--login,
.page-payment-methods__button--learn-more,
.page-payment-methods__button--deposit,
.page-payment-methods__button--withdraw,
.page-payment-methods__button--cta-register,
.page-payment-methods__button--cta-login,
.page-payment-methods__button--responsible-gaming {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-payment-methods__button--login:hover,
.page-payment-methods__button--learn-more:hover,
.page-payment-methods__button--deposit:hover,
.page-payment-methods__button--withdraw:hover,
.page-payment-methods__button--cta-register:hover,
.page-payment-methods__button--cta-login:hover,
.page-payment-methods__button--responsible-gaming:hover {
  background-color: #E0A030;
  color: #FFFFFF;
}

.page-payment-methods__overview-section,
.page-payment-methods__details-section,
.page-payment-methods__security-section,
.page-payment-methods__faq-section,
.page-payment-methods__cta-section,
.page-payment-methods__responsible-gaming-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-payment-methods__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-payment-methods__methods-grid,
.page-payment-methods__process-grid,
.page-payment-methods__security-features,
.page-payment-methods__faq-grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.page-payment-methods__methods-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-payment-methods__method-card,
.page-payment-methods__process-card,
.page-payment-methods__feature-item,
.page-payment-methods__faq-item {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-payment-methods__method-icon,
.page-payment-methods__feature-icon {
  width: 200px;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-payment-methods__method-title,
.page-payment-methods__process-title,
.page-payment-methods__feature-title,
.page-payment-methods__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-payment-methods__method-text,
.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-payment-methods__process-grid {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-payment-methods__process-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}

.page-payment-methods__process-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #555555;
}

.page-payment-methods__process-step-number {
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-payment-methods__security-features {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-payment-methods__faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-payment-methods__faq-item {
  text-align: left;
  background-color: #F8F8F8;
}

.page-payment-methods__faq-link {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
}

.page-payment-methods__faq-link:hover {
  color: #FCBC45;
}

.page-payment-methods__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
}

.page-payment-methods__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-payment-methods__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #F0F0F0;
}

.page-payment-methods__responsible-gaming-section {
  text-align: center;
  background-color: #F0F0F0;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-container {
    padding: 30px;
  }
  .page-payment-methods__hero-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-description {
    font-size: 1em;
  }
  .page-payment-methods__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__button {
    width: 100%;
    max-width: 250px;
  }
  .page-payment-methods__overview-section,
  .page-payment-methods__details-section,
  .page-payment-methods__security-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__cta-section,
  .page-payment-methods__responsible-gaming-section {
    margin: 20px auto;
    padding: 20px 15px;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-payment-methods__methods-grid,
  .page-payment-methods__process-grid,
  .page-payment-methods__security-features,
  .page-payment-methods__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__method-icon,
  .page-payment-methods__feature-icon {
    width: 150px;
    height: auto;
  }
  .page-payment-methods__method-title,
  .page-payment-methods__process-title,
  .page-payment-methods__feature-title,
  .page-payment-methods__faq-question {
    font-size: 1.3em;
  }
  .page-payment-methods__cta-title {
    font-size: 2em;
  }
  .page-payment-methods__cta-description {
    font-size: 1em;
  }
  /* Ensure all images within content area are responsive and not smaller than 200px display */
  .page-payment-methods img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
    object-fit: contain; /* Adjust as needed, cover or contain */
  }
  .page-payment-methods__hero-image {
    min-width: unset;
    min-height: unset;
  }
  .page-payment-methods__method-icon, .page-payment-methods__feature-icon {
    min-width: 200px;
    min-height: 150px; /* Adjusted to fit common aspect ratios, but still >= 200px on one dimension */
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods__hero-container {
    padding: 20px;
  }
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__cta-title {
    font-size: 1.8em;
  }
  .page-payment-methods__button {
    padding: 10px 20px;
  }
  .page-payment-methods__method-icon, .page-payment-methods__feature-icon {
    width: 100%; /* Allow full width, but still respect min-width 200px */
    height: auto;
  }
}