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

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

.page-payment-methods-withdrawal-process__hero-section {
  position: relative;
  background-color: #f4f4f4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-bottom: 40px;
}

.page-payment-methods-withdrawal-process__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-payment-methods-withdrawal-process__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.6); /* Slightly darken image for text readability, no color change */
}

.page-payment-methods-withdrawal-process__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay for text readability */
  border-radius: 10px;
}

.page-payment-methods-withdrawal-process__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-payment-methods-withdrawal-process__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Burgundy text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-payment-methods-withdrawal-process__hero-button:hover {
  background-color: #8B0000; /* Burgundy on hover */
  color: #FFD700; /* Gold text on hover */
  border-color: #FFD700;
}

.page-payment-methods-withdrawal-process__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Burgundy for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-payment-methods-withdrawal-process__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-payment-methods-withdrawal-process__introduction-section,
.page-payment-methods-withdrawal-process__steps-section,
.page-payment-methods-withdrawal-process__documents-section,
.page-payment-methods-withdrawal-process__times-fees-section,
.page-payment-methods-withdrawal-process__tips-section,
.page-payment-methods-withdrawal-process__responsible-gaming-section,
.page-payment-methods-withdrawal-process__faq-section,
.page-payment-methods-withdrawal-process__cta-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-withdrawal-process__introduction-section {
  padding-top: 40px;
  background-color: #fcfcfc;
}

.page-payment-methods-withdrawal-process__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-withdrawal-process__text-block--note {
  font-style: italic;
  color: #8B0000;
  text-align: center;
}

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

.page-payment-methods-withdrawal-process__step-card {
  background-color: #fcfcfc;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-payment-methods-withdrawal-process__step-icon {
  width: 250px; /* Min 200px */
  height: 187px; /* Min 200px */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid #FFD700;
}

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

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

.page-payment-methods-withdrawal-process__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-payment-methods-withdrawal-process__step-button:hover {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #FFD700;
}

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

.page-payment-methods-withdrawal-process__document-card {
  background-color: #fcfcfc;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-payment-methods-withdrawal-process__document-image {
  width: 250px; /* Min 200px */
  height: 166px; /* Min 200px */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 2px solid #8B0000;
}

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

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

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

.page-payment-methods-withdrawal-process__info-card {
  background-color: #8B0000; /* Burgundy background */
  color: #ffffff; /* White text */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-withdrawal-process__info-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold title */
  margin-bottom: 15px;
}

.page-payment-methods-withdrawal-process__info-description {
  font-size: 1em;
  line-height: 1.5;
}

.page-payment-methods-withdrawal-process__section-image {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-payment-methods-withdrawal-process__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-withdrawal-process__tip-item {
  background-color: #fcfcfc;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
}

.page-payment-methods-withdrawal-process__tip-item strong {
  color: #8B0000;
}

.page-payment-methods-withdrawal-process__responsible-gaming-section {
  background-color: #f8f8f8;
  text-align: center;
}

.page-payment-methods-withdrawal-process__responsible-gaming-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  border: 2px solid #8B0000;
}

.page-payment-methods-withdrawal-process__responsible-gaming-button:hover {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

.page-payment-methods-withdrawal-process__faq-grid {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-withdrawal-process__faq-item {
  background-color: #fcfcfc;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.page-payment-methods-withdrawal-process__faq-question {
  font-size: 1.2em;
  color: #8B0000;
  margin-bottom: 10px;
}

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

.page-payment-methods-withdrawal-process__cta-section {
  background-color: #8B0000; /* Burgundy background for CTA */
  color: #ffffff;
  text-align: center;
  padding-bottom: 80px;
}

.page-payment-methods-withdrawal-process__cta-section .page-payment-methods-withdrawal-process__section-title {
  color: #FFD700; /* Gold title on burgundy */
}

.page-payment-methods-withdrawal-process__cta-section .page-payment-methods-withdrawal-process__section-title::after {
  background-color: #ffffff;
}

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

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

.page-payment-methods-withdrawal-process__cta-button--register {
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Burgundy text */
  border: 2px solid #FFD700;
}

.page-payment-methods-withdrawal-process__cta-button--register:hover {
  background-color: #ffffff;
  color: #8B0000;
  border-color: #ffffff;
}

.page-payment-methods-withdrawal-process__cta-button--login {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-payment-methods-withdrawal-process__cta-button--login:hover {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

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

@media (max-width: 768px) {
  .page-payment-methods-withdrawal-process__hero-title {
    font-size: 2.5em;
  }
  .page-payment-methods-withdrawal-process__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods-withdrawal-process__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-payment-methods-withdrawal-process__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-withdrawal-process__text-block {
    font-size: 1em;
  }
  .page-payment-methods-withdrawal-process__steps-grid,
  .page-payment-methods-withdrawal-process__document-cards,
  .page-payment-methods-withdrawal-process__info-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-withdrawal-process__step-card,
  .page-payment-methods-withdrawal-process__document-card,
  .page-payment-methods-withdrawal-process__info-card {
    padding: 20px;
  }
  .page-payment-methods-withdrawal-process__step-icon,
  .page-payment-methods-withdrawal-process__document-image {
    width: 100%;
    height: auto;
    max-width: 300px; /* Ensure images are not too small but responsive */
    min-width: 200px;
    min-height: 150px;
  }
  .page-payment-methods-withdrawal-process__section-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 150px;
  }
  .page-payment-methods-withdrawal-process__tips-list,
  .page-payment-methods-withdrawal-process__faq-grid {
    padding: 0 10px;
  }
  .page-payment-methods-withdrawal-process__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods-withdrawal-process__cta-button {
    width: 80%;
    max-width: 300px;
  }
  /* Ensure all content area images are responsive and not too small */
  .page-payment-methods-withdrawal-process img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min- /* Enforce minimum size */
  }
}

@media (max-width: 480px) {
  .page-payment-methods-withdrawal-process__hero-title {
    font-size: 2em;
  }
  .page-payment-methods-withdrawal-process__hero-description {
    font-size: 1em;
  }
  .page-payment-methods-withdrawal-process__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods-withdrawal-process__hero-content {
    padding: 20px 15px;
  }
}