.page-payment-methods-fast-payment-channels {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-payment-methods-fast-payment-channels__hero {
  background: linear-gradient(135deg, #1A202C 0%, #3e4a61 100%);
  color: #FFD700;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: center;
}

.page-payment-methods-fast-payment-channels__hero-content {
  max-width: 600px;
}

.page-payment-methods-fast-payment-channels__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-payment-methods-fast-payment-channels__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e5dfd3;
}

.page-payment-methods-fast-payment-channels__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  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-fast-payment-channels__cta-button:hover {
  background-color: #e5c400;
  transform: translateY(-2px);
}

.page-payment-methods-fast-payment-channels__cta-button--small {
  padding: 12px 25px;
  font-size: 1em;
}

.page-payment-methods-fast-payment-channels__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-payment-methods-fast-payment-channels__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-payment-methods-fast-payment-channels__hero-image-wrapper {
  flex-shrink: 0;
  width: 400px;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.page-payment-methods-fast-payment-channels__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-payment-methods-fast-payment-channels__section {
  padding: 60px 0;
  text-align: center;
}

.page-payment-methods-fast-payment-channels__section:nth-of-type(even) {
  background-color: #2a3345;
}

.page-payment-methods-fast-payment-channels__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-payment-methods-fast-payment-channels__section-description {
  font-size: 1.1em;
  color: #d1d1d1;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-payment-methods-fast-payment-channels__features-grid,
.page-payment-methods-fast-payment-channels__options-grid,
.page-payment-methods-fast-payment-channels__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-fast-payment-channels__feature-item,
.page-payment-methods-fast-payment-channels__option-item,
.page-payment-methods-fast-payment-channels__security-item {
  background-color: #2a3345;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-payment-methods-fast-payment-channels__feature-item:hover,
.page-payment-methods-fast-payment-channels__option-item:hover,
.page-payment-methods-fast-payment-channels__security-item:hover {
  transform: translateY(-5px);
}

.page-payment-methods-fast-payment-channels__feature-icon,
.page-payment-methods-fast-payment-channels__option-icon,
.page-payment-methods-fast-payment-channels__security-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-payment-methods-fast-payment-channels__feature-title,
.page-payment-methods-fast-payment-channels__option-title,
.page-payment-methods-fast-payment-channels__security-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-methods-fast-payment-channels__feature-text,
.page-payment-methods-fast-payment-channels__option-text,
.page-payment-methods-fast-payment-channels__security-text {
  color: #d1d1d1;
  font-size: 1em;
}

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

.page-payment-methods-fast-payment-channels__step-item {
  background-color: #2a3345;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-fast-payment-channels__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-payment-methods-fast-payment-channels__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-methods-fast-payment-channels__step-text {
  color: #d1d1d1;
  font-size: 1em;
}

.page-payment-methods-fast-payment-channels__note {
  background-color: #3e4a61;
  color: #e5dfd3;
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
  text-align: left;
  border-left: 5px solid #FFD700;
}

.page-payment-methods-fast-payment-channels__tip-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 900px;
  text-align: left;
}

.page-payment-methods-fast-payment-channels__tip-list li {
  background-color: #2a3345;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #FFD700;
  color: #e5dfd3;
}

.page-payment-methods-fast-payment-channels__tip-list li strong {
  color: #FFD700;
}

.page-payment-methods-fast-payment-channels__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-fast-payment-channels__faq-item {
  background-color: #2a3345;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-fast-payment-channels__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-payment-methods-fast-payment-channels__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-payment-methods-fast-payment-channels__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-payment-methods-fast-payment-channels__faq-answer {
  padding: 0 20px 20px;
  color: #d1d1d1;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-payment-methods-fast-payment-channels__faq-answer p {
  margin-top: 0;
  margin-bottom: 10px;
}

.page-payment-methods-fast-payment-channels__faq-answer .page-payment-methods-fast-payment-channels__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-payment-methods-fast-payment-channels__faq-answer .page-payment-methods-fast-payment-channels__text-link:hover {
  color: #e5c400;
  text-decoration: underline;
}

.page-payment-methods-fast-payment-channels__cta-bottom {
  background-color: #1A202C;
  padding: 80px 0;
}

.page-payment-methods-fast-payment-channels__cta-bottom-content {
  background-color: #3e4a61;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-payment-methods-fast-payment-channels__button-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods-fast-payment-channels__hero {
    flex-direction: column;
    text-align: center;
  }
  .page-payment-methods-fast-payment-channels__hero-content {
    order: 2;
  }
  .page-payment-methods-fast-payment-channels__hero-image-wrapper {
    order: 1;
    width: 80%;
    height: auto;
    margin-bottom: 30px;
  }
  .page-payment-methods-fast-payment-channels__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods-fast-payment-channels__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-fast-payment-channels__hero-title {
    font-size: 2em;
  }
  .page-payment-methods-fast-payment-channels__hero-subtitle {
    font-size: 1em;
  }
  .page-payment-methods-fast-payment-channels__section {
    padding: 40px 0;
  }
  .page-payment-methods-fast-payment-channels__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-fast-payment-channels__features-grid,
  .page-payment-methods-fast-payment-channels__options-grid,
  .page-payment-methods-fast-payment-channels__security-grid,
  .page-payment-methods-fast-payment-channels__steps {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-fast-payment-channels__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-payment-methods-fast-payment-channels__button-group {
    flex-direction: column;
  }
  .page-payment-methods-fast-payment-channels__cta-bottom-content {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-fast-payment-channels__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods-fast-payment-channels__hero-image-wrapper {
    width: 90%;
  }
  .page-payment-methods-fast-payment-channels__cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-payment-methods-fast-payment-channels__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods-fast-payment-channels__feature-item,
  .page-payment-methods-fast-payment-channels__option-item,
  .page-payment-methods-fast-payment-channels__security-item,
  .page-payment-methods-fast-payment-channels__step-item {
    padding: 20px;
  }
  .page-payment-methods-fast-payment-channels__faq-question {
    font-size: 1.1em;
  }
  .page-payment-methods-fast-payment-channels__faq-question::after {
    font-size: 1.2em;
  }
}