:root {
  --main-color: #11A84E;
  --accent-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-payment-methods-crypto {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default to light text for dark body background */
}

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

.page-payment-methods-crypto__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 60px; /* Space for content below */
}

.page-payment-methods-crypto__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height on desktop */
}

.page-payment-methods-crypto__hero-content {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: 20px; /* Separates from image */
  color: var(--text-main);
}

.page-payment-methods-crypto__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--text-main);
}

.page-payment-methods-crypto__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-payment-methods-crypto__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods-crypto__cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-payment-methods-crypto__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-payment-methods-crypto__sub-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--text-main);
}

/* Background & Text Colors */
.page-payment-methods-crypto__dark-bg {
  background-color: var(--background); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
  padding: 60px 0;
}

.page-payment-methods-crypto__light-bg {
  background-color: #ffffff; /* Default light for contrast */
  color: #333333; /* Dark text for light background */
  padding: 60px 0;
}

.page-payment-methods-crypto__light-bg .page-payment-methods-crypto__section-title,
.page-payment-methods-crypto__light-bg .page-payment-methods-crypto__sub-title {
  color: #333333;
}

.page-payment-methods-crypto__card {
  background-color: var(--card-bg); /* #11271B */
  color: var(--text-main); /* #F2FFF6 */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--border); /* #2E7A4E */
}

.page-payment-methods-crypto__card:hover {
  transform: translateY(-5px);
}

/* Intro Section */
.page-payment-methods-crypto__intro-section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Why Choose Section */
.page-payment-methods-crypto__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-crypto__feature-card {
  text-align: center;
}

.page-payment-methods-crypto__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-payment-methods-crypto__feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--gold); /* Highlight with gold */
}

/* Crypto Types Section */
.page-payment-methods-crypto__crypto-types-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-payment-methods-crypto__crypto-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-payment-methods-crypto__crypto-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border); /* #2E7A4E */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  flex: 1 1 200px; /* Adjust based on number of items */
  max-width: 280px;
}

.page-payment-methods-crypto__crypto-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-payment-methods-crypto__crypto-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-main);
}

/* Guide Sections */
.page-payment-methods-crypto__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-payment-methods-crypto__guide-list li {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border); /* #2E7A4E */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-crypto__guide-list li strong {
  color: var(--gold); /* Highlight step number */
}

.page-payment-methods-crypto__tips-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.page-payment-methods-crypto__cta-button--small {
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 20px;
}

/* FAQ Section */
.page-payment-methods-crypto__faq-list {
  margin-top: 40px;
}

.page-payment-methods-crypto__faq-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border); /* #2E7A4E */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-payment-methods-crypto__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-main);
  background-color: var(--deep-green); /* #0A4B2C */
  border-bottom: 1px solid var(--divider); /* #1E3A2A */
}

.page-payment-methods-crypto__faq-question::-webkit-details-marker {
  display: none;
}

.page-payment-methods-crypto__faq-question::marker {
  display: none;
}

.page-payment-methods-crypto__faq-item[open] .page-payment-methods-crypto__faq-question {
  border-bottom: 1px solid var(--border);
}

.page-payment-methods-crypto__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--glow); /* #57E38D */
}

.page-payment-methods-crypto__faq-item[open] .page-payment-methods-crypto__faq-toggle {
  transform: rotate(45deg);
}

.page-payment-methods-crypto__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  background-color: var(--card-bg); /* #11271B */
}

.page-payment-methods-crypto__faq-answer p {
  margin-bottom: 10px;
}

/* CTA Section */
.page-payment-methods-crypto__cta-content {
  text-align: center;
}

.page-payment-methods-crypto__cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-crypto__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-payment-methods-crypto__cta-button--primary {
  background: var(--button-gradient);
  color: #ffffff;
}

.page-payment-methods-crypto__cta-button--secondary {
  background: transparent;
  color: var(--glow); /* #57E38D */
  border: 2px solid var(--glow); /* #57E38D */
}

.page-payment-methods-crypto__cta-button--secondary:hover {
  background: var(--glow);
  color: var(--background); /* #08160F */
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-payment-methods-crypto__hero-image {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-crypto__container {
    padding: 15px;
  }

  .page-payment-methods-crypto__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-bottom: 40px;
  }
  
  .page-payment-methods-crypto__hero-image {
    max-height: 400px;
  }

  .page-payment-methods-crypto__main-title {
    font-size: 2rem;
  }

  .page-payment-methods-crypto__hero-description {
    font-size: 1rem;
  }

  .page-payment-methods-crypto__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-payment-methods-crypto__sub-title {
    font-size: 1.3rem;
  }

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

  .page-payment-methods-crypto__crypto-list {
    flex-direction: column;
    align-items: center;
  }

  .page-payment-methods-crypto__crypto-item {
    max-width: 100%;
  }

  .page-payment-methods-crypto__guide-list li {
    font-size: 1rem;
    padding: 15px;
  }
  
  .page-payment-methods-crypto__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-payment-methods-crypto__faq-answer {
    font-size: 0.95rem;
    padding: 15px 20px;
  }
  
  /* Mobile image responsiveness */
  .page-payment-methods-crypto img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-payment-methods-crypto__section,
  .page-payment-methods-crypto__card,
  .page-payment-methods-crypto__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Mobile button responsiveness */
  .page-payment-methods-crypto__cta-button,
  .page-payment-methods-crypto__btn-primary,
  .page-payment-methods-crypto__btn-secondary,
  .page-payment-methods-crypto a[class*="button"],
  .page-payment-methods-crypto a[class*="btn"] {
    max-width: 100% !important;
    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-crypto__cta-buttons,
  .page-payment-methods-crypto__button-group,
  .page-payment-methods-crypto__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-payment-methods-crypto__cta-buttons {
    flex-direction: column;
  }
}