.page-payment-methods-crypto-guide {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-payment-methods-crypto-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A202C 0%, #0F1217 100%); /* Subtle dark gradient background */
}

.page-payment-methods-crypto-guide__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-crypto-guide__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-payment-methods-crypto-guide__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-payment-methods-crypto-guide__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-payment-methods-crypto-guide__hero-button,
.page-payment-methods-crypto-guide__cta-button,
.page-payment-methods-crypto-guide__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-payment-methods-crypto-guide__hero-button:hover,
.page-payment-methods-crypto-guide__cta-button:hover,
.page-payment-methods-crypto-guide__step-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-payment-methods-crypto-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-crypto-guide__section-intro {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.page-payment-methods-crypto-guide__benefits-section,
.page-payment-methods-crypto-guide__supported-crypto-section,
.page-payment-methods-crypto-guide__deposit-guide-section,
.page-payment-methods-crypto-guide__withdrawal-guide-section,
.page-payment-methods-crypto-guide__tips-section,
.page-payment-methods-crypto-guide__faq-section,
.page-payment-methods-crypto-guide__cta-final-section {
  padding: 60px 0;
  background-color: #1A202C; /* Dark background for content sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-payment-methods-crypto-guide__benefits-grid,
.page-payment-methods-crypto-guide__crypto-list,
.page-payment-methods-crypto-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-crypto-guide__benefit-card,
.page-payment-methods-crypto-guide__crypto-item,
.page-payment-methods-crypto-guide__step-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-payment-methods-crypto-guide__benefit-card:hover,
.page-payment-methods-crypto-guide__crypto-item:hover,
.page-payment-methods-crypto-guide__step-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-payment-methods-crypto-guide__benefit-icon,
.page-payment-methods-crypto-guide__crypto-logo {
  width: 150px; /* Ensure images are not too small */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* No CSS filter */
}

.page-payment-methods-crypto-guide__benefit-title,
.page-payment-methods-crypto-guide__crypto-name,
.page-payment-methods-crypto-guide__step-title,
.page-payment-methods-crypto-guide__tip-title,
.page-payment-methods-crypto-guide__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-payment-methods-crypto-guide__benefit-description,
.page-payment-methods-crypto-guide__crypto-description,
.page-payment-methods-crypto-guide__step-description,
.page-payment-methods-crypto-guide__tip-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-payment-methods-crypto-guide__tip-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-crypto-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-payment-methods-crypto-guide__faq-items {
  margin-top: 40px;
}

.page-payment-methods-crypto-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-crypto-guide__faq-question {
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  color: #FFD700;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-payment-methods-crypto-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-payment-methods-crypto-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-payment-methods-crypto-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-payment-methods-crypto-guide__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-payment-methods-crypto-guide__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding: 20px;
}

.page-payment-methods-crypto-guide__faq-answer p {
  color: #cccccc;
  line-height: 1.6;
}

/* Ensure all content images meet the minimum size requirement */
.page-payment-methods-crypto-guide img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* or contain, depending on context */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-payment-methods-crypto-guide__hero-title {
    font-size: 2.8em;
  }
  .page-payment-methods-crypto-guide__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods-crypto-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-crypto-guide__hero-section {
    padding: 60px 15px 30px;
  }
  .page-payment-methods-crypto-guide__hero-title {
    font-size: 2.2em;
  }
  .page-payment-methods-crypto-guide__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-payment-methods-crypto-guide__hero-button,
  .page-payment-methods-crypto-guide__cta-button,
  .page-payment-methods-crypto-guide__step-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-payment-methods-crypto-guide__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-crypto-guide__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-payment-methods-crypto-guide__container {
    padding: 0 15px;
  }
  .page-payment-methods-crypto-guide__benefits-grid,
  .page-payment-methods-crypto-guide__crypto-list,
  .page-payment-methods-crypto-guide__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-crypto-guide__benefit-card,
  .page-payment-methods-crypto-guide__crypto-item,
  .page-payment-methods-crypto-guide__step-card {
    padding: 25px;
  }
  .page-payment-methods-crypto-guide__benefit-title,
  .page-payment-methods-crypto-guide__crypto-name,
  .page-payment-methods-crypto-guide__step-title,
  .page-payment-methods-crypto-guide__tip-title,
  .page-payment-methods-crypto-guide__faq-question {
    font-size: 1.3em;
  }
  .page-payment-methods-crypto-guide__benefit-description,
  .page-payment-methods-crypto-guide__crypto-description,
  .page-payment-methods-crypto-guide__step-description,
  .page-payment-methods-crypto-guide__tip-description {
    font-size: 0.9em;
  }
  /* Mobile content area image constraint */
  .page-payment-methods-crypto-guide__benefits-section img,
  .page-payment-methods-crypto-guide__supported-crypto-section img,
  .page-payment-methods-crypto-guide__deposit-guide-section img,
  .page-payment-methods-crypto-guide__withdrawal-guide-section img,
  .page-payment-methods-crypto-guide__tips-section img,
  .page-payment-methods-crypto-guide__faq-section img,
  .page-payment-methods-crypto-guide__cta-final-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size even on mobile */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-crypto-guide__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods-crypto-guide__hero-description {
    font-size: 0.9em;
  }
  .page-payment-methods-crypto-guide__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods-crypto-guide__benefit-icon,
  .page-payment-methods-crypto-guide__crypto-logo {
    width: 100px;
    height: 100px;
  }
  .page-payment-methods-crypto-guide__benefit-title,
  .page-payment-methods-crypto-guide__crypto-name,
  .page-payment-methods-crypto-guide__step-title,
  .page-payment-methods-crypto-guide__tip-title,
  .page-payment-methods-crypto-guide__faq-question {
    font-size: 1.1em;
  }
  .page-payment-methods-crypto-guide__faq-question {
    padding: 15px;
  }
  .page-payment-methods-crypto-guide__faq-answer.active {
    padding: 15px;
  }
}

/* Ensure all images within the content area are at least 200px by 200px */
.page-payment-methods-crypto-guide__benefit-card img,
.page-payment-methods-crypto-guide__crypto-item img {
  width: 200px;
  height: 200px;
  object-fit: contain; /* Adjust as needed */
  filter: none; /* No CSS filter */
}

/* Specific adjustment for smaller crypto logos if they must be smaller, but still enforcing min 200x200 for content images */
/* The previous rule for .page-payment-methods-crypto-guide__crypto-logo with 150x150 will be overridden by the more general .page-payment-methods-crypto-guide img if it's placed later or has higher specificity. Let's ensure the explicit image sizes are respected for content */
.page-payment-methods-crypto-guide__crypto-logo {
  
  
  object-fit: contain;
  filter: none;
  min- /* Allow slightly smaller for specific logos but ensure it's not tiny */
  min-
}

/* Re-applying the overall min-size for content images to ensure no accidental small images */
.page-payment-methods-crypto-guide__benefits-section img,
.page-payment-methods-crypto-guide__supported-crypto-section img,
.page-payment-methods-crypto-guide__deposit-guide-section img,
.page-payment-methods-crypto-guide__withdrawal-guide-section img,
.page-payment-methods-crypto-guide__tips-section img,
.page-payment-methods-crypto-guide__faq-section img,
.page-payment-methods-crypto-guide__cta-final-section img {
    min-width: 200px; 
    min-height: 200px;
    filter: none; /* Explicitly prevent filter */
}