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

.page-payment-methods-withdrawal-guide__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2342;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-payment-methods-withdrawal-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-payment-methods-withdrawal-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #F2C94C;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-payment-methods-withdrawal-guide__hero-button {
  display: inline-block;
  background-color: #F2C94C;
  color: #0A2342;
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-payment-methods-withdrawal-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-payment-methods-withdrawal-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-payment-methods-withdrawal-guide__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.page-payment-methods-withdrawal-guide__section:last-of-type {
  border-bottom: none;
}

.page-payment-methods-withdrawal-guide__section-title {
  font-size: 2.5em;
  color: #0A2342;
  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: #F2C94C;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-payment-methods-withdrawal-guide__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-payment-methods-withdrawal-guide__step-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-payment-methods-withdrawal-guide__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-withdrawal-guide__step-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-payment-methods-withdrawal-guide__step-title {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods-withdrawal-guide__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-payment-methods-withdrawal-guide__step-button {
  display: inline-block;
  background-color: #0A2342;
  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: #1a3a60;
}

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

.page-payment-methods-withdrawal-guide__tips-item {
  background-color: #f0f4f7;
  border-left: 5px solid #F2C94C;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-withdrawal-guide__tips-heading {
  font-size: 1.3em;
  color: #0A2342;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-payment-methods-withdrawal-guide__tips-item p {
  font-size: 1em;
  color: #555555;
}

.page-payment-methods-withdrawal-guide__security-image {
  text-align: center;
  margin-top: 40px;
}

.page-payment-methods-withdrawal-guide__security-image img {
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

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

.page-payment-methods-withdrawal-guide__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
}

.page-payment-methods-withdrawal-guide__faq-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.page-payment-methods-withdrawal-guide__faq-question {
  font-size: 1.25em;
  color: #0A2342;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-payment-methods-withdrawal-guide__section--cta {
  text-align: center;
  background-color: #0A2342;
  color: #ffffff;
  padding: 80px 20px;
}

.page-payment-methods-withdrawal-guide__section--cta .page-payment-methods-withdrawal-guide__section-title {
  color: #F2C94C;
}

.page-payment-methods-withdrawal-guide__section--cta .page-payment-methods-withdrawal-guide__section-title::after {
  background-color: #F2C94C;
}

.page-payment-methods-withdrawal-guide__section--cta .page-payment-methods-withdrawal-guide__section-text {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.15em;
  color: #e0e0e0;
}

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

.page-payment-methods-withdrawal-guide__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-withdrawal-guide__cta-button--primary {
  background-color: #F2C94C;
  color: #0A2342;
}

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

.page-payment-methods-withdrawal-guide__cta-button--secondary {
  background-color: #ffffff;
  color: #0A2342;
  border: 2px solid #F2C94C;
}

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

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

@media (max-width: 768px) {
  .page-payment-methods-withdrawal-guide__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-payment-methods-withdrawal-guide__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods-withdrawal-guide__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods-withdrawal-guide__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-payment-methods-withdrawal-guide__section {
    padding: 40px 15px;
  }
  .page-payment-methods-withdrawal-guide__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-withdrawal-guide__section-text {
    font-size: 1em;
  }
  .page-payment-methods-withdrawal-guide__steps-grid,
  .page-payment-methods-withdrawal-guide__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-withdrawal-guide__step-card {
    padding: 25px;
  }
  .page-payment-methods-withdrawal-guide__step-title {
    font-size: 1.3em;
  }
  .page-payment-methods-withdrawal-guide__tips-heading {
    font-size: 1.2em;
  }
  .page-payment-methods-withdrawal-guide__security-image img {
    max-width: 100%;
  }
  .page-payment-methods-withdrawal-guide__faq-question {
    font-size: 1.1em;
  }
  .page-payment-methods-withdrawal-guide__section--cta {
    padding: 60px 15px;
  }
  .page-payment-methods-withdrawal-guide__section--cta .page-payment-methods-withdrawal-guide__section-text {
    font-size: 1em;
  }
  .page-payment-methods-withdrawal-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods-withdrawal-guide__cta-button {
    width: 100%;
    max-width: 300px;
    font-size: 1em;
  }

  /* Ensure content images are responsive and not too small */
  .page-payment-methods-withdrawal-guide img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

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