.page-payment-methods-withdrawal-guide {
  color: #333333; /* Dark text for light body background */
}

.page-payment-methods-withdrawal-guide__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
  overflow: hidden;
}

.page-payment-methods-withdrawal-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the image to make text readable */
  z-index: 1;
}

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

.page-payment-methods-withdrawal-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login color for emphasis */
}

.page-payment-methods-withdrawal-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-payment-methods-withdrawal-guide__hero-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-payment-methods-withdrawal-guide__hero-button:hover {
  background-color: #e0a538;
}

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

.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__troubleshooting-section,
.page-payment-methods-withdrawal-guide__responsible-gambling-section,
.page-payment-methods-withdrawal-guide__faq-section,
.page-payment-methods-withdrawal-guide__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-payment-methods-withdrawal-guide__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

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

.page-payment-methods-withdrawal-guide__step-icon {
  width: 250px; /* Minimum size */
  height: 187px; /* Maintain aspect ratio for 4:3 */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

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

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

.page-payment-methods-withdrawal-guide__note {
  margin-top: 40px;
  padding: 20px;
  background-color: #fff8e1;
  border-left: 5px solid #FCBC45;
  border-radius: 5px;
  font-style: italic;
  color: #666666;
}

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

.page-payment-methods-withdrawal-guide__method-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.page-payment-methods-withdrawal-guide__method-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

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

.page-payment-methods-withdrawal-guide__info-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.page-payment-methods-withdrawal-guide__info-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-payment-methods-withdrawal-guide__inline-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods-withdrawal-guide__inline-link:hover {
  text-decoration: underline;
}

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

.page-payment-methods-withdrawal-guide__issue-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-withdrawal-guide__issue-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 8px;
}

.page-payment-methods-withdrawal-guide__issue-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-payment-methods-withdrawal-guide__support-button,
.page-payment-methods-withdrawal-guide__responsible-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-payment-methods-withdrawal-guide__support-button:hover,
.page-payment-methods-withdrawal-guide__responsible-button:hover {
  background-color: #e0a538;
}

.page-payment-methods-withdrawal-guide__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.page-payment-methods-withdrawal-guide__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-payment-methods-withdrawal-guide__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-payment-methods-withdrawal-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FCBC45;
}

.page-payment-methods-withdrawal-guide__faq-question.active::after {
  content: '-';
}

.page-payment-methods-withdrawal-guide__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-payment-methods-withdrawal-guide__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content */
  transition: max-height 0.5s ease-in;
}

.page-payment-methods-withdrawal-guide__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

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

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

.page-payment-methods-withdrawal-guide__cta-section .page-payment-methods-withdrawal-guide__text-content {
  color: #f0f0f0;
}

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

.page-payment-methods-withdrawal-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-withdrawal-guide__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-payment-methods-withdrawal-guide__cta-button--register:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.page-payment-methods-withdrawal-guide__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-payment-methods-withdrawal-guide__cta-button--login:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(252, 188, 69, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-payment-methods-withdrawal-guide__hero-title {
    font-size: 2.8em;
  }
  .page-payment-methods-withdrawal-guide__section-title {
    font-size: 2em;
  }
  .page-payment-methods-withdrawal-guide__step-icon {
    width: 200px; /* Adjust for smaller screens */
    height: 150px;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-withdrawal-guide {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-payment-methods-withdrawal-guide__hero-section {
    min-height: 400px;
  }
  .page-payment-methods-withdrawal-guide__hero-title {
    font-size: 2em;
  }
  .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__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__troubleshooting-section,
  .page-payment-methods-withdrawal-guide__responsible-gambling-section,
  .page-payment-methods-withdrawal-guide__faq-section,
  .page-payment-methods-withdrawal-guide__cta-section {
    padding: 40px 0;
  }
  .page-payment-methods-withdrawal-guide__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-withdrawal-guide__text-content {
    font-size: 0.95em;
  }
  .page-payment-methods-withdrawal-guide__steps-grid,
  .page-payment-methods-withdrawal-guide__method-list,
  .page-payment-methods-withdrawal-guide__info-grid,
  .page-payment-methods-withdrawal-guide__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-withdrawal-guide__step-icon {
    width: 200px; /* Minimum size */
    height: 150px; /* Maintain aspect ratio */
  }
  .page-payment-methods-withdrawal-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods-withdrawal-guide__cta-button {
    width: 100%;
    max-width: 280px;
  }
  .page-payment-methods-withdrawal-guide__hero-image,
  .page-payment-methods-withdrawal-guide__step-icon,
  .page-payment-methods-withdrawal-guide__method-item img,
  .page-payment-methods-withdrawal-guide__info-card img,
  .page-payment-methods-withdrawal-guide__issue-item img,
  .page-payment-methods-withdrawal-guide__faq-item img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-withdrawal-guide__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods-withdrawal-guide__section-title {
    font-size: 1.6em;
  }
  .page-payment-methods-withdrawal-guide__step-card,
  .page-payment-methods-withdrawal-guide__method-item,
  .page-payment-methods-withdrawal-guide__info-card,
  .page-payment-methods-withdrawal-guide__issue-item,
  .page-payment-methods-withdrawal-guide__faq-item {
    padding: 20px;
  }
  .page-payment-methods-withdrawal-guide__hero-button,
  .page-payment-methods-withdrawal-guide__cta-button {
    font-size: 0.95em;
    padding: 10px 20px;
  }
  .page-payment-methods-withdrawal-guide__step-icon {
    width: 200px; /* Minimum size */
    height: 150px; /* Maintain aspect ratio */
  }
}