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

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

.page-payment-methods__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #007bff;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

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

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

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

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

.page-payment-methods__hero-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, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-payment-methods__hero-button--primary {
  background-color: #ffc107;
  color: #333333;
}

.page-payment-methods__hero-button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-payment-methods__hero-button--secondary {
  background-color: #0056b3;
  color: #ffffff;
  border: 2px solid #0056b3;
}

.page-payment-methods__hero-button--secondary:hover {
  background-color: #003f80;
  transform: translateY(-2px);
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  font-weight: bold;
}

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

.page-payment-methods__overview-section,
.page-payment-methods__deposit-section,
.page-payment-methods__withdrawal-section,
.page-payment-methods__security-section,
.page-payment-methods__faq-section,
.page-payment-methods__cta-final {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

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

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

.page-payment-methods__overview-item {
  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__overview-item:hover {
  transform: translateY(-5px);
}

.page-payment-methods__overview-icon {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-payment-methods__overview-heading {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-payment-methods__overview-text {
  color: #666666;
  font-size: 1em;
}

.page-payment-methods__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 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;
  border: 1px solid #eeeeee;
}

.page-payment-methods__method-card:hover {
  transform: translateY(-5px);
  border-color: #007bff;
}

.page-payment-methods__method-icon {
  width: 250px;
  height: 180px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-payment-methods__method-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-payment-methods__method-text {
  color: #666666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-payment-methods__method-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.9em;
  color: #444444;
}

.page-payment-methods__method-details li {
  margin-bottom: 8px;
}

.page-payment-methods__method-detail-label {
  color: #007bff;
}

.page-payment-methods__cta-deposit {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #eaf6ff;
  border-radius: 10px;
}

.page-payment-methods__cta-text {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-payment-methods__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

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

.page-payment-methods__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  border: 1px solid #eeeeee;
}

.page-payment-methods__step-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-payment-methods__withdrawal-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.page-payment-methods__withdrawal-image {
  flex: 1 1 45%;
  min-width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-payment-methods__withdrawal-details {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-payment-methods__withdrawal-heading {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 20px;
}

.page-payment-methods__withdrawal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.05em;
  color: #444444;
}

.page-payment-methods__withdrawal-list li {
  margin-bottom: 12px;
}

.page-payment-methods__withdrawal-label {
  color: #007bff;
  font-weight: bold;
}

.page-payment-methods__withdrawal-note {
  font-size: 0.9em;
  color: #777777;
  margin-top: 20px;
  font-style: italic;
}

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

.page-payment-methods__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  border: 1px solid #eeeeee;
  transition: transform 0.3s ease;
}

.page-payment-methods__feature-item:hover {
  transform: translateY(-5px);
  border-color: #ffc107;
}

.page-payment-methods__feature-icon {
  width: 250px;
  height: 180px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

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

.page-payment-methods__responsible-gaming {
  background-color: #fffde7; /* Light yellow background */
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 30px;
  margin-top: 60px;
  text-align: center;
}

.page-payment-methods__responsible-gaming-title {
  font-size: 2em;
  color: #ffc107;
  margin-bottom: 15px;
}

.page-payment-methods__responsible-gaming-text {
  color: #666666;
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-payment-methods__responsible-gaming-link {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-payment-methods__responsible-gaming-link:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

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

.page-payment-methods__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  padding: 25px;
  border: 1px solid #eeeeee;
}

.page-payment-methods__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-payment-methods__faq-answer {
  color: #555555;
  font-size: 0.95em;
}

.page-payment-methods__cta-faq {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #eaf6ff;
  border-radius: 10px;
}

.page-payment-methods__cta-final {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

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

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

.page-payment-methods__cta-final-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-payment-methods__cta-final-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, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-payment-methods__cta-final-button--primary {
  background-color: #ffc107;
  color: #333333;
}

.page-payment-methods__cta-final-button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-payment-methods__cta-final-button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-payment-methods__cta-final-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-payment-methods__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__withdrawal-info {
    flex-direction: column;
  }
  .page-payment-methods__withdrawal-image,
  .page-payment-methods__withdrawal-details {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    padding: 60px 0;
  }
  .page-payment-methods__hero-title {
    font-size: 2em;
  }
  .page-payment-methods__hero-description {
    font-size: 1em;
  }
  .page-payment-methods__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__hero-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods__section-description {
    font-size: 0.95em;
  }
  .page-payment-methods__overview-icon,
  .page-payment-methods__method-icon,
  .page-payment-methods__feature-icon {
    width: 200px;
    height: auto;
  }
  .page-payment-methods__overview-item,
  .page-payment-methods__method-card,
  .page-payment-methods__step-item,
  .page-payment-methods__feature-item,
  .page-payment-methods__faq-item {
    padding: 20px;
  }
  .page-payment-methods__cta-deposit,
  .page-payment-methods__responsible-gaming,
  .page-payment-methods__cta-faq {
    padding: 20px;
  }
  .page-payment-methods__cta-text {
    font-size: 1.2em;
  }
  .page-payment-methods__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-payment-methods__responsible-gaming-title {
    font-size: 1.8em;
  }
  .page-payment-methods__cta-final-title {
    font-size: 2.2em;
  }
  .page-payment-methods__cta-final-description {
    font-size: 1.1em;
  }
  .page-payment-methods__cta-final-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__cta-final-button {
    width: 80%;
    margin: 0 auto;
  }
  /* Mobile image scaling */
  .page-payment-methods img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods__hero-description {
    font-size: 0.9em;
  }
  .page-payment-methods__section-title {
    font-size: 1.6em;
  }
  .page-payment-methods__cta-final-title {
    font-size: 1.8em;
  }
  .page-payment-methods__cta-final-description {
    font-size: 1em;
  }
}