.page-payment-methods {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure body background is respected */
}

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

.page-payment-methods__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  box-sizing: border-box;
}

.page-payment-methods__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.page-payment-methods__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

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

.page-payment-methods__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-payment-methods__hero-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #26A9E0;
}

.page-payment-methods__hero-button:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-payment-methods__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-payment-methods__text-block {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-payment-methods__overview-section,
.page-payment-methods__guide-section,
.page-payment-methods__main-methods-section,
.page-payment-methods__limits-fees-section,
.page-payment-methods__processing-time-section,
.page-payment-methods__security-section,
.page-payment-methods__troubleshooting-section,
.page-payment-methods__tips-section,
.page-payment-methods__faq-section,
.page-payment-methods__cta-section {
  padding: 80px 0;
}

.page-payment-methods__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-payment-methods__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-payment-methods__overview-grid,
.page-payment-methods__steps-grid,
.page-payment-methods__methods-grid,
.page-payment-methods__info-grid,
.page-payment-methods__time-info,
.page-payment-methods__security-features,
.page-payment-methods__issue-grid {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

.page-payment-methods__overview-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-payment-methods__overview-item,
.page-payment-methods__step-item,
.page-payment-methods__method-card,
.page-payment-methods__info-card,
.page-payment-methods__time-item,
.page-payment-methods__feature-item,
.page-payment-methods__issue-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-payment-methods__overview-item:hover,
.page-payment-methods__step-item:hover,
.page-payment-methods__method-card:hover,
.page-payment-methods__info-card:hover,
.page-payment-methods__time-item:hover,
.page-payment-methods__feature-item:hover,
.page-payment-methods__issue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-payment-methods__overview-item img,
.page-payment-methods__step-item img,
.page-payment-methods__method-card img,
.page-payment-methods__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  width: 100%;
}

.page-payment-methods__item-title,
.page-payment-methods__step-title,
.page-payment-methods__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-payment-methods__item-description,
.page-payment-methods__step-description,
.page-payment-methods__card-description {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-payment-methods__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-payment-methods__method-card .page-payment-methods__card-description {
  margin-bottom: 20px;
}

.page-payment-methods__card-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: auto;
}

.page-payment-methods__card-features li {
  color: #f0f0f0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-payment-methods__card-features li i {
  color: #26A9E0;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-payment-methods__main-methods-section .page-payment-methods__methods-grid {
  grid-template-columns: 1fr 1fr;
}

.page-payment-methods__info-grid {
  grid-template-columns: 1fr 1fr;
}

.page-payment-methods__info-card {
  text-align: left;
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__info-card h3 {
  color: #26A9E0;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.page-payment-methods__info-card p {
  margin-bottom: 10px;
}

.page-payment-methods__card-note {
  font-style: italic;
  font-size: 0.9em;
  color: #555555;
}

.page-payment-methods__time-info {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-payment-methods__time-item i {
  font-size: 3em;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-payment-methods__time-item h3 {
  color: #26A9E0;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-payment-methods__time-item ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.page-payment-methods__time-item ul li {
  color: #f0f0f0;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.page-payment-methods__time-item ul li::before {
  content: '•';
  color: #26A9E0;
  position: absolute;
  left: 0;
}

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

.page-payment-methods__feature-item h3 {
  color: #26A9E0;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-payment-methods__feature-item p {
  color: #f0f0f0;
}

.page-payment-methods__issue-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-payment-methods__issue-card {
  text-align: left;
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods__issue-card h3 {
  color: #26A9E0;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-payment-methods__issue-card p {
  margin-bottom: 10px;
}

.page-payment-methods__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #26A9E0;
  padding: 10px 20px;
  border: 2px solid #26A9E0;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.page-payment-methods__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-payment-methods__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-payment-methods__tips-list li {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #f0f0f0;
}

.page-payment-methods__tips-list li i {
  color: #26A9E0;
  margin-right: 15px;
  font-size: 1.5em;
  min-width: 20px;
}

.page-payment-methods__tips-list li strong {
  color: #26A9E0;
}

.page-payment-methods__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-payment-methods__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-payment-methods__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.page-payment-methods__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.page-payment-methods__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}

.page-payment-methods__faq-toggle {
  font-size: 1.5em;
  color: #26A9E0;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-toggle {
  transform: rotate(45deg);
}

.page-payment-methods__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-payment-methods__faq-item.active .page-payment-methods__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-payment-methods__cta-section {
  text-align: center;
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-payment-methods__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-payment-methods__btn-primary {
  display: inline-block;
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #EA7C07;
}

.page-payment-methods__btn-primary:hover {
  background-color: #c96706;
  border-color: #c96706;
}

.page-payment-methods__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Icon styles (simple placeholder) */
.icon-check::before {
  content: '✓';
}
.icon-timer::before {
  content: '⏱️';
}
.icon-factors::before {
  content: '📊';
}
.icon-tips::before {
  content: '💡';
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-payment-methods__hero-title {
    font-size: 3em;
  }
  .page-payment-methods__section-title {
    font-size: 2em;
  }
  .page-payment-methods__main-methods-section .page-payment-methods__methods-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods__info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-payment-methods__hero-section {
    height: 500px;
  }
  .page-payment-methods__hero-title {
    font-size: 2.2em;
  }
  .page-payment-methods__hero-description {
    font-size: 1em;
  }
  .page-payment-methods__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-payment-methods__text-block {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-payment-methods__overview-section,
  .page-payment-methods__guide-section,
  .page-payment-methods__main-methods-section,
  .page-payment-methods__limits-fees-section,
  .page-payment-methods__processing-time-section,
  .page-payment-methods__security-section,
  .page-payment-methods__troubleshooting-section,
  .page-payment-methods__tips-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__cta-section {
    padding: 60px 0;
  }
  .page-payment-methods__overview-item,
  .page-payment-methods__step-item,
  .page-payment-methods__method-card,
  .page-payment-methods__info-card,
  .page-payment-methods__time-item,
  .page-payment-methods__feature-item,
  .page-payment-methods__issue-card {
    padding: 20px;
  }
  .page-payment-methods__item-title,
  .page-payment-methods__step-title,
  .page-payment-methods__card-title,
  .page-payment-methods__info-card h3,
  .page-payment-methods__time-item h3,
  .page-payment-methods__feature-item h3,
  .page-payment-methods__issue-card h3 {
    font-size: 1.5em;
  }
  .page-payment-methods__cta-title {
    font-size: 2em;
  }
  .page-payment-methods__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods__hero-button,
  .page-payment-methods__btn-primary,
  .page-payment-methods__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods__overview-section,
  .page-payment-methods__guide-section,
  .page-payment-methods__main-methods-section,
  .page-payment-methods__limits-fees-section,
  .page-payment-methods__processing-time-section,
  .page-payment-methods__security-section,
  .page-payment-methods__troubleshooting-section,
  .page-payment-methods__tips-section,
  .page-payment-methods__faq-section,
  .page-payment-methods__cta-section,
  .page-payment-methods__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-payment-methods img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-payment-methods__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-payment-methods__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-payment-methods__faq-question h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-payment-methods__hero-section {
    height: 400px;
  }
  .page-payment-methods__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods__hero-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-payment-methods__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods__cta-title {
    font-size: 1.8em;
  }
  .page-payment-methods__faq-question h3 {
    font-size: 1em;
  }
}