.page-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-payment-methods .highlight {
  color: #1E90FF;
}

.page-payment-methods__hero {
  background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-payment-methods__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-payment-methods__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFFFFF; /* Ensure high contrast */
}

.page-payment-methods__hero-title .highlight {
  color: #FFD700; /* Gold highlight on blue/gold gradient */
}

.page-payment-methods__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly lighter for contrast on gradient */
}

.page-payment-methods__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 0;
}

.page-payment-methods__hero-image {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}

.page-payment-methods__section {
  padding: 60px 0;
}

.page-payment-methods__section--intro {
  background-color: #ffffff;
}

.page-payment-methods__section--options,
.page-payment-methods__section--withdrawal,
.page-payment-methods__section--fees,
.page-payment-methods__section--security,
.page-payment-methods__section--currency,
.page-payment-methods__section--tips,
.page-payment-methods__section--details {
  background-color: #f8f8f8;
}

.page-payment-methods__section--withdrawal {
  background-color: #e0f2f7; /* Light blue background for contrast */
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-payment-methods__section-title .highlight {
  color: #1E90FF;
}

.page-payment-methods__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

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

.page-payment-methods__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-payment-methods__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-payment-methods__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.page-payment-methods__card-title {
  font-size: 1.8em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
}

.page-payment-methods__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-payment-methods__btn--primary {
  background-color: #FFD700;
  color: #1a1a1a; /* Dark text on gold for high contrast */
  border: 2px solid #FFD700;
}

.page-payment-methods__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-payment-methods__btn--secondary {
  background-color: #1E90FF;
  color: #ffffff;
  border: 2px solid #1E90FF;
}

.page-payment-methods__btn--secondary:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

.page-payment-methods__btn--link {
  background: none;
  border: none;
  color: #1E90FF;
  padding: 0;
  font-size: 1em;
  font-weight: normal;
  text-decoration: underline;
}

.page-payment-methods__btn--link:hover {
  color: #0d47a1;
  text-decoration: none;
}

.page-payment-methods__note {
  text-align: center;
  font-style: italic;
  color: #666;
  margin-top: 40px;
  font-size: 0.95em;
}

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

.page-payment-methods__step {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  position: relative;
  border-bottom: 5px solid #1E90FF;
}

.page-payment-methods__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1a1a1a; /* Dark text on gold */
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__step-title {
  font-size: 1.6em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__step p {
  font-size: 1em;
  color: #555;
}

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

.page-payment-methods__info-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-left: 5px solid #FFD700;
}

.page-payment-methods__info-title {
  font-size: 1.8em;
  color: #1E90FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__info-card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

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

.page-payment-methods__feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  border-right: 5px solid #FFD700;
}

.page-payment-methods__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.page-payment-methods__feature-title {
  font-size: 1.6em;
  color: #1E90FF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-payment-methods__feature-item p {
  font-size: 1em;
  color: #555;
}

.page-payment-methods__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-payment-methods__list li {
  background-color: #ffffff;
  border-left: 4px solid #FFD700;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-size: 1.1em;
  color: #333;
}

.page-payment-methods__list li strong {
  color: #1E90FF;
}

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

.page-payment-methods__detail-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-bottom: 5px solid #1E90FF;
  text-align: center;
}

.page-payment-methods__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-payment-methods__detail-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods__detail-title a {
  color: #1E90FF;
  text-decoration: none;
}

.page-payment-methods__detail-title a:hover {
  text-decoration: underline;
  color: #0d47a1;
}

.page-payment-methods__detail-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-payment-methods__cta-bottom {
  background: linear-gradient(90deg, #1E90FF 0%, #0d47a1 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-top: 5px solid #FFD700;
}

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

.page-payment-methods__cta-title .highlight {
  color: #FFD700;
}

.page-payment-methods__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-payment-methods__cta-bottom .page-payment-methods__btn {
  margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods__hero-title {
    font-size: 2.8em;
  }
  .page-payment-methods__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-image-wrapper {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero {
    padding: 60px 20px;
  }
  .page-payment-methods__hero-title {
    font-size: 2.2em;
  }
  .page-payment-methods__hero-description {
    font-size: 1em;
  }
  .page-payment-methods__section {
    padding: 40px 0;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__hero-image-wrapper {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 30px;
    display: block;
  }
  .page-payment-methods__hero-image {
    max-width: 80%;
    margin: 0 auto;
    display: block;
  }
  .page-payment-methods__cta-title {
    font-size: 2em;
  }
  .page-payment-methods__cta-description {
    font-size: 1em;
  }
  .page-payment-methods__cta-bottom .page-payment-methods__btn {
    display: block;
    margin: 15px auto;
    max-width: 280px;
  }
  .page-payment-methods__grid,
  .page-payment-methods__steps,
  .page-payment-methods__info-grid,
  .page-payment-methods__security-features,
  .page-payment-methods__detail-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__card,
  .page-payment-methods__step,
  .page-payment-methods__info-card,
  .page-payment-methods__feature-item,
  .page-payment-methods__detail-item {
    padding: 20px;
  }
  .page-payment-methods__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-payment-methods__cta-title {
    font-size: 1.6em;
  }
}