.page-payment-methods-guide {
  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 below fixed header */
}

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

.page-payment-methods-guide__section-spacing {
  padding: 60px 0;
}

.page-payment-methods-guide__hero-section {
  background-color: #000000; /* Main black background for hero */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-payment-methods-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.6;
  overflow: hidden;
}

.page-payment-methods-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

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

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

.page-payment-methods-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-guide__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-payment-methods-guide__button--register:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-payment-methods-guide__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-payment-methods-guide__button--login:hover {
  background-color: #e0a538;
  transform: translateY(-2px);
}

.page-payment-methods-guide__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-payment-methods-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-payment-methods-guide__text-content {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
}

.page-payment-methods-guide__image-wrapper {
  margin-bottom: 40px;
  text-align: center;
  overflow: hidden; /* Contains floats */
}

.page-payment-methods-guide__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: block; /* Ensure it behaves as a block element for margin auto */
  margin: 0 auto; /* Center the image */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

.page-payment-methods-guide__image-wrapper--left img {
  float: left;
  margin-right: 40px;
  margin-bottom: 20px;
  width: 600px; /* Display width */
  height: 450px; /* Display height */
}

.page-payment-methods-guide__image-wrapper--right img {
  float: right;
  margin-left: 40px;
  margin-bottom: 20px;
  width: 600px; /* Display width */
  height: 450px; /* Display height */
}

.page-payment-methods-guide__image-wrapper--center img {
  width: 800px; /* Display width */
  height: 533px; /* Display height */
}

.page-payment-methods-guide__method-group {
  clear: both; /* Clear floats from image wrappers */
  margin-top: 40px;
}

.page-payment-methods-guide__method-subtitle {
  font-size: 2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}

.page-payment-methods-guide__method-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-guide__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-guide__card-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-payment-methods-guide__card-text {
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-payment-methods-guide__steps-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-payment-methods-guide__steps-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-payment-methods-guide__details-list {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
  border-top: 1px dashed #e0e0e0;
  padding-top: 15px;
}

.page-payment-methods-guide__details-list li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

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

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

.page-payment-methods-guide__info-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FCBC45;
}

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

.page-payment-methods-guide__info-card-text {
  font-size: 1em;
}

.page-payment-methods-guide__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-guide__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-payment-methods-guide__faq-answer {
  font-size: 1.05em;
  color: #555555;
}

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

.page-payment-methods-guide__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-payment-methods-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

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

.page-payment-methods-guide__button--support {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #FCBC45;
  margin-top: 30px;
}

.page-payment-methods-guide__button--support:hover {
  background-color: #FCBC45;
  color: #000000;
}

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

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

  .page-payment-methods-guide__image-wrapper--left img,
  .page-payment-methods-guide__image-wrapper--right img {
    float: none;
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 600px; /* Constrain floating images on smaller screens */
    height: auto;
  }

  .page-payment-methods-guide__image-wrapper--center img {
    width: 100%;
    max-width: 700px;
    height: auto;
  }

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

  .page-payment-methods-guide__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-guide {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }

  .page-payment-methods-guide__hero-section {
    padding: 60px 20px;
    min-height: 400px;
  }

  .page-payment-methods-guide__hero-title {
    font-size: 2.2em;
  }

  .page-payment-methods-guide__hero-description {
    font-size: 1.1em;
  }

  .page-payment-methods-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods-guide__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .page-payment-methods-guide__text-content {
    font-size: 1em;
  }

  .page-payment-methods-guide__method-subtitle {
    font-size: 1.6em;
  }

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

  .page-payment-methods-guide__faq-question {
    font-size: 1.2em;
  }

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

  /* Enforce max-width and min-width for all images in content area */
  .page-payment-methods-guide img {
    max-width: 100%; 
    height: auto; 
    min-width: 200px; /* Minimum width for content images */
    min-height: 200px; /* Minimum height for content images */
  }
}

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

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

  .page-payment-methods-guide__method-card {
    padding: 20px;
  }

  .page-payment-methods-guide__card-title {
    font-size: 1.3em;
  }

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

  .page-payment-methods-guide__cta-title {
    font-size: 1.6em;
  }
}