.page-gambling-reviews-payment-methods {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for body text */
  background-color: #0A192F; /* Primary dark blue background */
}

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

.page-gambling-reviews-payment-methods__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A2E4B 100%);
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 450px;
}

.page-gambling-reviews-payment-methods__hero-content {
  flex: 1;
  max-width: 600px;
  text-align: left;
  padding-left: 20px;
}

.page-gambling-reviews-payment-methods__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent gold for main title */
  line-height: 1.2;
}

.page-gambling-reviews-payment-methods__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #CCCCCC;
}

.page-gambling-reviews-payment-methods__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}

.page-gambling-reviews-payment-methods__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-gambling-reviews-payment-methods__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gambling-reviews-payment-methods__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gambling-reviews-payment-methods__button--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-gambling-reviews-payment-methods__button--primary:hover {
  background-color: #e6c200;
}

.page-gambling-reviews-payment-methods__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gambling-reviews-payment-methods__section:last-of-type {
  border-bottom: none;
}

.page-gambling-reviews-payment-methods__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
}

.page-gambling-reviews-payment-methods__section-description {
  font-size: 1.1em;
  color: #CCCCCC;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-gambling-reviews-payment-methods__criterion-item {
  background-color: #1A2E4B;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-gambling-reviews-payment-methods__criterion-item:hover {
  transform: translateY(-5px);
}

.page-gambling-reviews-payment-methods__criterion-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-gambling-reviews-payment-methods__criterion-item p {
  color: #E0E0E0;
}

.page-gambling-reviews-payment-methods__methods .page-gambling-reviews-payment-methods__method-item {
  background-color: #1A2E4B;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gambling-reviews-payment-methods__method-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
}

.page-gambling-reviews-payment-methods__method-details {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.page-gambling-reviews-payment-methods__method-details--reverse {
  flex-direction: row-reverse;
}

.page-gambling-reviews-payment-methods__method-image {
  width: 40%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gambling-reviews-payment-methods__method-text {
  flex: 1;
}

.page-gambling-reviews-payment-methods__method-text h4 {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-gambling-reviews-payment-methods__method-text p,
.page-gambling-reviews-payment-methods__method-text li {
  color: #E0E0E0;
  margin-bottom: 10px;
}

.page-gambling-reviews-payment-methods__method-text ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-gambling-reviews-payment-methods__comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
  position: relative;
}

.page-gambling-reviews-payment-methods__comparison-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block; /* Ensure it takes full width */
}

.page-gambling-reviews-payment-methods__comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  min-width: 600px; /* Ensure table is readable on smaller screens */
}

.page-gambling-reviews-payment-methods__comparison-table th,
.page-gambling-reviews-payment-methods__comparison-table td {
  border: 1px solid #334766;
  padding: 15px;
  text-align: left;
  color: #E0E0E0;
}

.page-gambling-reviews-payment-methods__comparison-table th {
  background-color: #0A192F;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.1em;
}

.page-gambling-reviews-payment-methods__comparison-table tr:nth-child(even) {
  background-color: #1A2E4B;
}

.page-gambling-reviews-payment-methods__comparison-table tr:hover {
  background-color: #2A4365;
}

.page-gambling-reviews-payment-methods__comparison-note {
  font-size: 0.9em;
  color: #AAAAAA;
  text-align: center;
  margin-top: 20px;
}

.page-gambling-reviews-payment-methods__advice .page-gambling-reviews-payment-methods__list {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-gambling-reviews-payment-methods__advice .page-gambling-reviews-payment-methods__list li {
  background-color: #1A2E4B;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 50px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-gambling-reviews-payment-methods__advice .page-gambling-reviews-payment-methods__list li::before {
  content: '✓';
  color: #FFD700;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-gambling-reviews-payment-methods__faq-item {
  background-color: #1A2E4B;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-gambling-reviews-payment-methods__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-gambling-reviews-payment-methods__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-gambling-reviews-payment-methods__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-gambling-reviews-payment-methods__faq-answer {
  color: #E0E0E0;
  margin-top: 15px;
  padding-left: 15px;
  border-left: 3px solid #FFD700;
  display: none;
}

.page-gambling-reviews-payment-methods__faq-answer.active {
  display: block;
}

.page-gambling-reviews-payment-methods__cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(45deg, #0A192F, #2A4365);
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1000px;
}

.page-gambling-reviews-payment-methods__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gambling-reviews-payment-methods__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .page-gambling-reviews-payment-methods__hero-content {
    max-width: 100%;
    padding-left: 0;
    margin-bottom: 40px;
  }

  .page-gambling-reviews-payment-methods__hero-image-wrapper {
    padding-right: 0;
  }

  .page-gambling-reviews-payment-methods__hero-title {
    font-size: 2.5em;
  }

  .page-gambling-reviews-payment-methods__method-details {
    flex-direction: column;
    align-items: center;
  }

  .page-gambling-reviews-payment-methods__method-details--reverse {
    flex-direction: column;
  }

  .page-gambling-reviews-payment-methods__method-image {
    width: 80%;
    max-width: 500px;
    margin-bottom: 30px;
  }

  .page-gambling-reviews-payment-methods__method-text {
    text-align: center;
  }

  .page-gambling-reviews-payment-methods__method-text ul {
    text-align: left;
    margin: 0 auto;
    width: fit-content;
  }

  .page-gambling-reviews-payment-methods__section-title {
    font-size: 2em;
  }

  .page-gambling-reviews-payment-methods__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-gambling-reviews-payment-methods__hero {
    padding: 40px 15px;
  }

  .page-gambling-reviews-payment-methods__hero-title {
    font-size: 2em;
  }

  .page-gambling-reviews-payment-methods__hero-subtitle {
    font-size: 1.1em;
  }

  .page-gambling-reviews-payment-methods__section {
    padding: 40px 0;
  }

  .page-gambling-reviews-payment-methods__section-title {
    font-size: 1.8em;
  }

  .page-gambling-reviews-payment-methods__section-description {
    font-size: 1em;
  }

  .page-gambling-reviews-payment-methods__criterion-title {
    font-size: 1.3em;
  }

  .page-gambling-reviews-payment-methods__method-title {
    font-size: 1.8em;
  }

  .page-gambling-reviews-payment-methods__method-image {
    width: 100%;
  }

  .page-gambling-reviews-payment-methods__cta-title {
    font-size: 1.8em;
  }

  .page-gambling-reviews-payment-methods__cta-description {
    font-size: 1em;
  }

  .page-gambling-reviews-payment-methods__button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}

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

  .page-gambling-reviews-payment-methods__hero-subtitle {
    font-size: 1em;
  }

  .page-gambling-reviews-payment-methods__section-title {
    font-size: 1.6em;
  }

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

  .page-gambling-reviews-payment-methods__cta-title {
    font-size: 1.6em;
  }

  .page-gambling-reviews-payment-methods__grid {
    grid-template-columns: 1fr;
  }
}