.page-ta88-review-payment-options {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text on dark background */
  background-color: #0A2463;
  line-height: 1.6;
}

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

.page-ta88-review-payment-options__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1c4dc3 100%); /* Deeper blue gradient for hero */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-ta88-review-payment-options__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-ta88-review-payment-options__hero-description {
  font-size: 1.3em;
  color: #D3D3D3;
  margin-bottom: 30px;
}

.page-ta88-review-payment-options__hero-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-ta88-review-payment-options__cta-button {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  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-ta88-review-payment-options__cta-button:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
}

.page-ta88-review-payment-options__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-ta88-review-payment-options__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(227, 178, 60, 0.2);
}

.page-ta88-review-payment-options__section:last-of-type {
  border-bottom: none;
}

.page-ta88-review-payment-options__section-title {
  font-size: 2.5em;
  color: #E3B23C;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-ta88-review-payment-options__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-ta88-review-payment-options__section-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-ta88-review-payment-options__method-card {
  background-color: rgba(227, 178, 60, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-ta88-review-payment-options__method-card:hover {
  transform: translateY(-5px);
  background-color: rgba(227, 178, 60, 0.2);
}

.page-ta88-review-payment-options__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-ta88-review-payment-options__method-title {
  font-size: 1.8em;
  color: #E3B23C;
  margin-bottom: 15px;
}

.page-ta88-review-payment-options__method-details {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  color: #D3D3D3;
}

.page-ta88-review-payment-options__method-details li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-ta88-review-payment-options__method-details li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #E3B23C;
}

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

.page-ta88-review-payment-options__steps-list li {
  background-color: rgba(227, 178, 60, 0.08);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  font-size: 1.15em;
  color: #F8F8F8;
  position: relative;
  padding-left: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-ta88-review-payment-options__steps-list li strong {
  color: #E3B23C;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-ta88-review-payment-options__steps-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #E3B23C;
  color: #0A2463;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-ta88-review-payment-options__steps-list li:nth-child(1)::before { content: '1'; }
.page-ta88-review-payment-options__steps-list li:nth-child(2)::before { content: '2'; }
.page-ta88-review-payment-options__steps-list li:nth-child(3)::before { content: '3'; }
.page-ta88-review-payment-options__steps-list li:nth-child(4)::before { content: '4'; }
.page-ta88-review-payment-options__steps-list li:nth-child(5)::before { content: '5'; }

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

.page-ta88-review-payment-options__notes-list li {
  background-color: rgba(10, 36, 99, 0.7);
  border-left: 5px solid #E3B23C;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #F8F8F8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-ta88-review-payment-options__notes-list li strong {
  color: #E3B23C;
}

.page-ta88-review-payment-options__faq-item {
  background-color: rgba(227, 178, 60, 0.08);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-ta88-review-payment-options__faq-question {
  font-size: 1.4em;
  color: #E3B23C;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-ta88-review-payment-options__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-ta88-review-payment-options__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-ta88-review-payment-options__faq-answer {
  font-size: 1.05em;
  color: #D3D3D3;
  display: none;
  margin-top: 15px;
}

.page-ta88-review-payment-options__faq-answer.active {
  display: block;
}

.page-ta88-review-payment-options__cta-area {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: rgba(227, 178, 60, 0.15);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-ta88-review-payment-options__cta-area p {
  font-size: 1.2em;
  color: #F8F8F8;
  margin-bottom: 25px;
}

.page-ta88-review-payment-options__final-cta {
  text-align: center;
  padding-bottom: 80px;
}

.page-ta88-review-payment-options__final-cta p {
  font-size: 1.2em;
  color: #F8F8F8;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-ta88-review-payment-options__hero-title {
    font-size: 2.8em;
  }
  .page-ta88-review-payment-options__hero-description {
    font-size: 1.15em;
  }
  .page-ta88-review-payment-options__section-title {
    font-size: 2em;
  }
  .page-ta88-review-payment-options__method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-ta88-review-payment-options__hero {
    padding: 60px 0;
  }
  .page-ta88-review-payment-options__hero-title {
    font-size: 2.2em;
  }
  .page-ta88-review-payment-options__hero-description {
    font-size: 1em;
  }
  .page-ta88-review-payment-options__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-ta88-review-payment-options__section {
    padding: 40px 0;
  }
  .page-ta88-review-payment-options__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-ta88-review-payment-options__section p,
  .page-ta88-review-payment-options__method-details li,
  .page-ta88-review-payment-options__notes-list li,
  .page-ta88-review-payment-options__faq-answer {
    font-size: 0.95em;
  }
  .page-ta88-review-payment-options__method-card {
    padding: 25px;
  }
  .page-ta88-review-payment-options__method-icon {
    width: 60px;
    height: 60px;
  }
  .page-ta88-review-payment-options__method-title {
    font-size: 1.5em;
  }
  .page-ta88-review-payment-options__steps-list li {
    padding: 20px 20px 20px 50px;
    font-size: 1em;
  }
  .page-ta88-review-payment-options__steps-list li::before {
    left: 15px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1em;
  }
  .page-ta88-review-payment-options__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-ta88-review-payment-options__hero-title {
    font-size: 1.8em;
  }
  .page-ta88-review-payment-options__hero-description {
    font-size: 0.9em;
  }
  .page-ta88-review-payment-options__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-ta88-review-payment-options__section-title {
    font-size: 1.5em;
  }
  .page-ta88-review-payment-options__method-card {
    padding: 20px;
  }
  .page-ta88-review-payment-options__method-title {
    font-size: 1.3em;
  }
  .page-ta88-review-payment-options__faq-question {
    font-size: 1.1em;
  }
}