.page-payment-methods {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-payment-methods__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-payment-methods__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the image to make text readable */
  z-index: 1;
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-payment-methods__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-payment-methods__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 200px; /* Ensure button minimum width */
  text-align: center;
}

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

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

.page-payment-methods__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-payment-methods__button--login:hover {
  background-color: #e0a538;
}

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

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

.page-payment-methods__overview-section,
.page-payment-methods__how-to-section,
.page-payment-methods__security-section,
.page-payment-methods__faq-section,
.page-payment-methods__cta-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-payment-methods__overview-section {
  background-color: #f9f9f9;
}

.page-payment-methods__category-title {
  font-size: 2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #000000;
}

.page-payment-methods__category-intro {
  font-size: 1em;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #666666;
}

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

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

.page-payment-methods__method-card:hover {
  transform: translateY(-10px);
}

.page-payment-methods__method-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 5px; /* Slightly rounded corners for icons */
}

.page-payment-methods__method-name {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-payment-methods__method-details {
  font-size: 0.95em;
  color: #777777;
}

.page-payment-methods__withdrawal-note {
  text-align: center;
  font-style: italic;
  color: #888888;
  margin-top: 40px;
  font-size: 0.9em;
}

.page-payment-methods__process-flow {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-payment-methods__process-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.page-payment-methods__process-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.page-payment-methods__process-list {
  list-style-type: decimal;
  padding-left: 20px;
}

.page-payment-methods__process-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444444;
}

.page-payment-methods__process-list li strong {
  color: #000000;
}

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

.page-payment-methods__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-payment-methods__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-payment-methods__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-payment-methods__feature-text {
  font-size: 0.95em;
  color: #666666;
}

.page-payment-methods__responsible-gaming-title {
  font-size: 1.8em;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 15px;
  color: #000000;
}

.page-payment-methods__responsible-gaming-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #555555;
}

.page-payment-methods__text-link {
  color: #FCBC45;
  text-decoration: none;
}

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

.page-payment-methods__faq-list {
  margin-top: 50px;
}

.page-payment-methods__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-payment-methods__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-payment-methods__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-payment-methods__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eeeeee;
  margin-top: 10px;
}

.page-payment-methods__faq-answer.active {
  display: block;
}

.page-payment-methods__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-payment-methods__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-payment-methods__button--explore {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-payment-methods__button--explore:hover {
  background-color: #FFFFFF;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods__hero-title {
    font-size: 3em;
  }

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

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding: 60px 0;
  }

  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }

  .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: 300px;
    margin: 0 auto;
  }

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

  .page-payment-methods__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-payment-methods__overview-section,
  .page-payment-methods__how-to-section,
  .page-payment-methods__security-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__cta-section {
    padding: 60px 0;
  }

  .page-payment-methods__method-grid {
    grid-template-columns: 1fr;
  }

  .page-payment-methods__process-flow {
    flex-direction: column;
    gap: 30px;
  }

  .page-payment-methods__process-card {
    min-width: unset;
    width: 100%;
  }

  .page-payment-methods__security-features {
    grid-template-columns: 1fr;
  }

  /* Ensure content area images are responsive and do not cause horizontal scrolling */
  .page-payment-methods__container img,
  .page-payment-methods__method-icon,
  .page-payment-methods__feature-icon {
    max-width: 100%;
    height: auto;
  }
  
  /* Content area image size enforcement for mobile */
  .page-payment-methods__method-icon,
  .page-payment-methods__feature-icon {
    width: 150px; /* Adjust to ensure minimum 200px display, as per instruction, actual HTML width/height set smaller for original aspect ratio, CSS will scale */
    height: 150px;
  }
  
  .page-payment-methods__method-card img,
  .page-payment-methods__feature-item img {
    min-width: 200px; /* Ensuring actual displayed size is not too small */
    min-height: 200px;
    width: 100%; /* Allows scaling up to container width */
    height: auto;
  }

  .page-payment-methods__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 2em;
  }

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

  .page-payment-methods__hero-section {
    padding: 40px 0;
  }

  .page-payment-methods__button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-payment-methods__method-card,
  .page-payment-methods__process-card,
  .page-payment-methods__feature-item,
  .page-payment-methods__faq-item {
    padding: 20px;
  }
}