.page-betting-platforms-payment-methods {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark backgrounds */
  background-color: #0A1931; /* Main background color */
  line-height: 1.6;
}

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

.page-betting-platforms-payment-methods__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1A3A6D 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-betting-platforms-payment-methods__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

.page-betting-platforms-payment-methods__hero-subtitle {
  font-size: 1.5em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-betting-platforms-payment-methods__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-betting-platforms-payment-methods__cta-button:hover {
  background-color: #E0B500; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-betting-platforms-payment-methods__cta-button--secondary {
  background-color: #1A3A6D;
  color: #FFD700;
  border: 1px solid #FFD700;
  margin-top: 20px;
}

.page-betting-platforms-payment-methods__cta-button--secondary:hover {
  background-color: #0A1931;
  color: #FFD700;
}

.page-betting-platforms-payment-methods__cta-button--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-betting-platforms-payment-methods__cta-button--outline:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-betting-platforms-payment-methods__content-section {
  padding: 60px 0;
}

.page-betting-platforms-payment-methods__bg-dark {
  background-color: #1A2D4A;
}

.page-betting-platforms-payment-methods__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-betting-platforms-payment-methods__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-betting-platforms-payment-methods__subsection-title {
  font-size: 2em;
  color: #FFFFFF; /* White for sub-section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-betting-platforms-payment-methods__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-betting-platforms-payment-methods__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-betting-platforms-payment-methods__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-betting-platforms-payment-methods__list li {
  background-color: #1A3A6D;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  color: #E0E0E0;
}

.page-betting-platforms-payment-methods__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.page-betting-platforms-payment-methods__list-item-title {
  color: #FFD700;
  margin-right: 5px;
}

.page-betting-platforms-payment-methods__checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-betting-platforms-payment-methods__checklist li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-betting-platforms-payment-methods__checklist li::before {
  content: '•';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.5em;
  line-height: 1;
}

.page-betting-platforms-payment-methods__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-betting-platforms-payment-methods__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-betting-platforms-payment-methods__hero-title {
    font-size: 2.5em;
  }

  .page-betting-platforms-payment-methods__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-betting-platforms-payment-methods__subsection-title {
    font-size: 1.5em;
  }

  .page-betting-platforms-payment-methods__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-betting-platforms-payment-methods__cta-button--outline {
    margin-left: 0;
  }
}

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

  .page-betting-platforms-payment-methods__hero-subtitle {
    font-size: 1em;
  }

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

  .page-betting-platforms-payment-methods__subsection-title {
    font-size: 1.3em;
  }

  .page-betting-platforms-payment-methods__list li, .page-betting-platforms-payment-methods__checklist li {
    padding: 10px 15px;
    font-size: 0.95em;
  }

  .page-betting-platforms-payment-methods__cta-button {
    width: 100%;
    padding: 12px 20px;
  }
}