.page-payment-methods-cryptocurrency {
  color: #333333; /* Default dark text for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content starts below fixed header */
}

.page-payment-methods-cryptocurrency__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-payment-methods-cryptocurrency__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-payment-methods-cryptocurrency__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(26, 35, 126, 0.7); /* Primary color with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-payment-methods-cryptocurrency__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Secondary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-cryptocurrency__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-payment-methods-cryptocurrency__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-payment-methods-cryptocurrency__button--primary {
  background-color: #FFD700; /* Secondary color */
  color: #1A237E; /* Primary color */
}

.page-payment-methods-cryptocurrency__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-payment-methods-cryptocurrency__button--secondary {
  background-color: #1A237E; /* Primary color */
  color: #FFD700; /* Secondary color */
  border: 2px solid #FFD700;
}

.page-payment-methods-cryptocurrency__button--secondary:hover {
  background-color: #0d1252;
  transform: translateY(-2px);
}

.page-payment-methods-cryptocurrency__content-area {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-payment-methods-cryptocurrency__section-title {
  font-size: 2.5em;
  color: #1A237E; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  position: relative;
}

.page-payment-methods-cryptocurrency__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Secondary color */
  margin: 10px auto 0;
}

.page-payment-methods-cryptocurrency__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
  color: #555555;
}

.page-payment-methods-cryptocurrency__features-grid,
.page-payment-methods-cryptocurrency__crypto-list,
.page-payment-methods-cryptocurrency__security-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-payment-methods-cryptocurrency__feature-card,
.page-payment-methods-cryptocurrency__crypto-item,
.page-payment-methods-cryptocurrency__highlight-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-cryptocurrency__feature-card:hover,
.page-payment-methods-cryptocurrency__crypto-item:hover,
.page-payment-methods-cryptocurrency__highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-cryptocurrency__feature-icon,
.page-payment-methods-cryptocurrency__crypto-logo,
.page-payment-methods-cryptocurrency__highlight-icon {
  width: 100%; /* Ensure images fill card width */
  height: auto;
  max-width: 250px; /* Constrain max width for visual consistency */
  min-width: 200px; /* Minimum size requirement */
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-payment-methods-cryptocurrency__feature-title,
.page-payment-methods-cryptocurrency__crypto-name,
.page-payment-methods-cryptocurrency__highlight-title {
  font-size: 1.5em;
  color: #1A237E; /* Primary color */
  margin-bottom: 15px;
}

.page-payment-methods-cryptocurrency__feature-description,
.page-payment-methods-cryptocurrency__crypto-desc,
.page-payment-methods-cryptocurrency__highlight-description {
  font-size: 1em;
  color: #666666;
}

.page-payment-methods-cryptocurrency__steps-list {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
}

.page-payment-methods-cryptocurrency__step-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700; /* Secondary color accent */
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-cryptocurrency__step-title {
  font-size: 1.6em;
  color: #1A237E; /* Primary color */
  margin-bottom: 10px;
}

.page-payment-methods-cryptocurrency__step-description {
  font-size: 1.05em;
  color: #555555;
}

.page-payment-methods-cryptocurrency__faq-section {
  margin-bottom: 50px;
}

.page-payment-methods-cryptocurrency__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-payment-methods-cryptocurrency__faq-question {
  font-size: 1.4em;
  color: #1A237E; /* Primary color */
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #f0f2f7;
}

.page-payment-methods-cryptocurrency__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-cryptocurrency__faq-item.active .page-payment-methods-cryptocurrency__faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-payment-methods-cryptocurrency__faq-answer {
  font-size: 1.05em;
  color: #555555;
  padding: 0 20px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-payment-methods-cryptocurrency__faq-item.active .page-payment-methods-cryptocurrency__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 0 20px 20px;
}

.page-payment-methods-cryptocurrency__cta-section {
  background-color: #1A237E; /* Primary color */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 50px;
}

.page-payment-methods-cryptocurrency__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Secondary color */
  margin-bottom: 20px;
}

.page-payment-methods-cryptocurrency__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .page-payment-methods-cryptocurrency__hero-title {
    font-size: 2.2em;
  }

  .page-payment-methods-cryptocurrency__hero-description {
    font-size: 1em;
  }

  .page-payment-methods-cryptocurrency__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-payment-methods-cryptocurrency__section-title {
    font-size: 2em;
  }

  .page-payment-methods-cryptocurrency__text-block {
    font-size: 0.95em;
  }

  .page-payment-methods-cryptocurrency__features-grid,
  .page-payment-methods-cryptocurrency__crypto-list,
  .page-payment-methods-cryptocurrency__security-highlights {
    grid-template-columns: 1fr;
  }

  .page-payment-methods-cryptocurrency__feature-icon,
  .page-payment-methods-cryptocurrency__crypto-logo,
  .page-payment-methods-cryptocurrency__highlight-icon {
    max-width: 100%; /* Allow images to expand to card width */
    height: auto;
    min-width: 200px; /* Ensure minimum size */
  }

  .page-payment-methods-cryptocurrency__cta-title {
    font-size: 2em;
  }

  .page-payment-methods-cryptocurrency__cta-description {
    font-size: 1em;
  }

  .page-payment-methods-cryptocurrency__faq-question {
    font-size: 1.2em;
  }

  /* Ensure content area does not cause horizontal scroll */
  .page-payment-methods-cryptocurrency__content-area {
    padding: 0 15px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-payment-methods-cryptocurrency__hero-section {
    padding: 60px 15px;
  }

  .page-payment-methods-cryptocurrency__hero-container {
    padding: 20px;
  }

  /* Force all images within content area to be responsive and not cause overflow */
  .page-payment-methods-cryptocurrency img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min-width even on mobile to prevent small icons */
  }
}

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

  .page-payment-methods-cryptocurrency__button {
    width: 100%;
    max-width: 280px;
  }

  .page-payment-methods-cryptocurrency__hero-buttons {
    flex-direction: column;
  }
}