.page-payment-methods {
  color: #333333; /* Dark text for light body background */
}

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

.page-payment-methods__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #1A1A1A;
  overflow: hidden;
}

.page-payment-methods__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 500px; /* Minimum height for hero section */
}

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

.page-payment-methods__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
}

.page-payment-methods__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-payment-methods__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-payment-methods__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-payment-methods__overview-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-payment-methods__overview-text {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

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

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

.page-payment-methods__overview-card-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__overview-card-title {
  font-size: 1.5em;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.page-payment-methods__overview-card-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-payment-methods__details-section {
  padding: 80px 0;
  background-color: #f4f4f4;
}

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

.page-payment-methods__details-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-payment-methods__method-category {
  margin-bottom: 60px;
}

.page-payment-methods__method-category-title {
  font-size: 2em;
  color: #FFD700;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.page-payment-methods__method-item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  padding: 30px;
  gap: 30px;
}

.page-payment-methods__method-logo {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 5px;
  min-width: 150px; /* Ensure images are not too small */
  min-height: 100px;
}

.page-payment-methods__method-info {
  flex-grow: 1;
}

.page-payment-methods__method-name {
  font-size: 1.8em;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.page-payment-methods__method-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 15px;
}

.page-payment-methods__method-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-payment-methods__method-features li {
  font-size: 0.95em;
  margin-bottom: 8px;
  color: #444444;
}

.page-payment-methods__method-features li strong {
  color: #1A1A1A;
}

.page-payment-methods__action-section {
  background-color: #1A1A1A;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
}

.page-payment-methods__action-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-methods__action-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-payment-methods__action-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-payment-methods__action-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-payment-methods__resource-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-payment-methods__resource-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-payment-methods__resource-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-payment-methods__resource-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods__resource-card-content {
  padding: 25px;
}

.page-payment-methods__resource-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-payment-methods__resource-card-title a {
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-payment-methods__resource-card-title a:hover {
  color: #FFD700;
}

.page-payment-methods__resource-card-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
}

.page-payment-methods__resource-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-payment-methods__resource-card-button:hover {
  background-color: #e6c200;
}

.page-payment-methods__faq-section {
  padding: 80px 0;
  background-color: #f4f4f4;
}

.page-payment-methods__faq-title {
  font-size: 2.5em;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 50px;
}

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

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.page-payment-methods__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

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

  .page-payment-methods__overview-title,
  .page-payment-methods__details-title,
  .page-payment-methods__resource-title,
  .page-payment-methods__faq-title {
    font-size: 2.2em;
  }

  .page-payment-methods__method-item {
    flex-direction: column;
    text-align: center;
  }

  .page-payment-methods__method-logo {
    margin-bottom: 20px;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-container {
    padding: 40px 15px;
    min-height: 400px;
  }

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

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

  .page-payment-methods__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-payment-methods__overview-section,
  .page-payment-methods__details-section,
  .page-payment-methods__resource-section,
  .page-payment-methods__faq-section {
    padding: 50px 0;
  }

  .page-payment-methods__overview-title,
  .page-payment-methods__details-title,
  .page-payment-methods__resource-title,
  .page-payment-methods__faq-title {
    font-size: 1.8em;
  }

  .page-payment-methods__overview-text,
  .page-payment-methods__details-intro,
  .page-payment-methods__action-description,
  .page-payment-methods__resource-intro {
    font-size: 0.95em;
  }

  .page-payment-methods__overview-card-icon,
  .page-payment-methods__resource-card-image,
  .page-payment-methods__method-logo {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }

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

  .page-payment-methods__method-category-title {
    font-size: 1.6em;
  }

  .page-payment-methods__method-name {
    font-size: 1.5em;
  }

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

  .page-payment-methods__action-button {
    font-size: 1.1em;
  }

  /* Mobile specific image sizing for content images */
  .page-payment-methods__container img,
  .page-payment-methods__overview-card-icon,
  .page-payment-methods__method-logo,
  .page-payment-methods__resource-card-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size even on mobile */
    min-height: 200px;
  }
}