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

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

.page-payment-methods-withdrawal-guide__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2463; /* Primary color as fallback */
  color: #ffffff;
  padding-bottom: 60px;
}

.page-payment-methods-withdrawal-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.page-payment-methods-withdrawal-guide__hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px; /* Adjust as needed */
  padding: 80px 20px;
}

.page-payment-methods-withdrawal-guide__hero-content {
  max-width: 900px;
}

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

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

.page-payment-methods-withdrawal-guide__hero-button {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  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;
}

.page-payment-methods-withdrawal-guide__hero-button:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
}

.page-payment-methods-withdrawal-guide__introduction-section,
.page-payment-methods-withdrawal-guide__steps-section,
.page-payment-methods-withdrawal-guide__methods-section,
.page-payment-methods-withdrawal-guide__limits-fees-section,
.page-payment-methods-withdrawal-guide__processing-times-section,
.page-payment-methods-withdrawal-guide__verification-section,
.page-payment-methods-withdrawal-guide__tips-section,
.page-payment-methods-withdrawal-guide__faq-section,
.page-payment-methods-withdrawal-guide__cta-section {
  padding: 60px 0;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.page-payment-methods-withdrawal-guide__introduction-section {
  background-color: #ffffff;
}

.page-payment-methods-withdrawal-guide__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-payment-methods-withdrawal-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E3B23C;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-payment-methods-withdrawal-guide__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #555555;
}

.page-payment-methods-withdrawal-guide__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.page-payment-methods-withdrawal-guide__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-withdrawal-guide__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__step-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-payment-methods-withdrawal-guide__step-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-payment-methods-withdrawal-guide__step-button:hover {
  background-color: #06173d;
}

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

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

.page-payment-methods-withdrawal-guide__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-withdrawal-guide__method-icon {
  width: 250px; /* Minimum 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-payment-methods-withdrawal-guide__method-name {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-payment-methods-withdrawal-guide__method-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-payment-methods-withdrawal-guide__method-details {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 250px;
  margin: 0 auto;
  color: #555555;
}

.page-payment-methods-withdrawal-guide__method-details li {
  margin-bottom: 8px;
}

.page-payment-methods-withdrawal-guide__button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-payment-methods-withdrawal-guide__button:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
}

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

.page-payment-methods-withdrawal-guide__info-card {
  background-color: #0A2463;
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-withdrawal-guide__info-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #E3B23C;
}

.page-payment-methods-withdrawal-guide__info-value {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__info-description {
  font-size: 0.95em;
  opacity: 0.9;
}

.page-payment-methods-withdrawal-guide__processing-times-section {
  background-color: #f0f0f0;
}

.page-payment-methods-withdrawal-guide__timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  padding: 20px 0;
}

.page-payment-methods-withdrawal-guide__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #E3B23C;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
}

.page-payment-methods-withdrawal-guide__timeline-item {
  padding: 20px 0;
  position: relative;
  width: 50%;
}

.page-payment-methods-withdrawal-guide__timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 40px;
  text-align: right;
}

.page-payment-methods-withdrawal-guide__timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 40px;
  text-align: left;
}

.page-payment-methods-withdrawal-guide__timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #0A2463;
  border: 3px solid #E3B23C;
  border-radius: 50%;
  top: calc(50% - 10px);
  z-index: 1;
}

.page-payment-methods-withdrawal-guide__timeline-item:nth-child(odd)::before {
  right: -10px;
  transform: translateX(50%);
}

.page-payment-methods-withdrawal-guide__timeline-item:nth-child(even)::before {
  left: -10px;
  transform: translateX(-50%);
}

.page-payment-methods-withdrawal-guide__timeline-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-payment-methods-withdrawal-guide__timeline-description {
  font-size: 1em;
  color: #666666;
}

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

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

.page-payment-methods-withdrawal-guide__verification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-withdrawal-guide__verification-icon {
  width: 250px; /* Minimum 200px */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-payment-methods-withdrawal-guide__verification-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__verification-description {
  font-size: 1em;
  color: #666666;
}

.page-payment-methods-withdrawal-guide__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-payment-methods-withdrawal-guide__tip-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-withdrawal-guide__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-withdrawal-guide__tip-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-payment-methods-withdrawal-guide__tip-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-payment-methods-withdrawal-guide__tip-button {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-payment-methods-withdrawal-guide__tip-button:hover {
  background-color: #f5db9c;
}

.page-payment-methods-withdrawal-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-payment-methods-withdrawal-guide__faq-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-payment-methods-withdrawal-guide__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-payment-methods-withdrawal-guide__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-payment-methods-withdrawal-guide__cta-section {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-payment-methods-withdrawal-guide__cta-section .page-payment-methods-withdrawal-guide__section-title,
.page-payment-methods-withdrawal-guide__cta-section .page-payment-methods-withdrawal-guide__section-text {
  color: #ffffff;
}

.page-payment-methods-withdrawal-guide__cta-section .page-payment-methods-withdrawal-guide__section-title::after {
  background-color: #E3B23C;
}

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

.page-payment-methods-withdrawal-guide__cta-button {
  display: inline-block;
  background-color: #E3B23C;
  color: #0A2463;
  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;
}

.page-payment-methods-withdrawal-guide__cta-button:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
}

.page-payment-methods-withdrawal-guide__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #E3B23C;
  color: #E3B23C;
}

.page-payment-methods-withdrawal-guide__cta-button--secondary:hover {
  background-color: #E3B23C;
  color: #0A2463;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-payment-methods-withdrawal-guide__hero-title {
    font-size: 3em;
  }

  .page-payment-methods-withdrawal-guide__hero-description {
    font-size: 1.2em;
  }

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

  .page-payment-methods-withdrawal-guide__timeline::before {
    left: 20px;
  }

  .page-payment-methods-withdrawal-guide__timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left;
  }

  .page-payment-methods-withdrawal-guide__timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 20px;
  }

  .page-payment-methods-withdrawal-guide__timeline-item:nth-child(even) {
    left: 0;
  }

  .page-payment-methods-withdrawal-guide__timeline-item::before {
    left: 10px;
    transform: translateX(0);
  }

  .page-payment-methods-withdrawal-guide__timeline-item:nth-child(odd)::before {
    right: auto;
  }
}

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

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

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

  .page-payment-methods-withdrawal-guide__section-title {
    font-size: 1.8em;
  }

  .page-payment-methods-withdrawal-guide__section-text {
    font-size: 0.95em;
  }

  .page-payment-methods-withdrawal-guide__hero-container {
    min-height: 400px;
    padding: 60px 20px;
  }

  .page-payment-methods-withdrawal-guide__method-icon,
  .page-payment-methods-withdrawal-guide__verification-icon {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto; /* Maintain aspect ratio */
  }

  /* Enforce min-width for all images in content area */
  .page-payment-methods-withdrawal-guide img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Minimum width for content images */
    min-height: 200px; /* Minimum height for content images */
  }

  .page-payment-methods-withdrawal-guide__method-icon,
  .page-payment-methods-withdrawal-guide__verification-icon {
    width: 250px; /* Explicit width for these elements */
    height: auto;
  }

  .page-payment-methods-withdrawal-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods-withdrawal-guide__cta-button {
    width: 100%;
    max-width: 300px;
  }
}

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

  .page-payment-methods-withdrawal-guide__hero-description {
    font-size: 0.9em;
  }

  .page-payment-methods-withdrawal-guide__section-title {
    font-size: 1.5em;
  }

  .page-payment-methods-withdrawal-guide__container {
    padding: 0 15px;
  }

  .page-payment-methods-withdrawal-guide__step-item,
  .page-payment-methods-withdrawal-guide__method-card,
  .page-payment-methods-withdrawal-guide__info-card,
  .page-payment-methods-withdrawal-guide__verification-card,
  .page-payment-methods-withdrawal-guide__tip-item,
  .page-payment-methods-withdrawal-guide__faq-item {
    padding: 20px;
  }
}