.page-payment-methods-deposit-withdrawal-process {
  color: #ffffff; /* Light text for dark 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-deposit-withdrawal-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods-deposit-withdrawal-process__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  overflow: hidden;
  background-color: #0A2342; /* Primary color background for hero text area */
}

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

.page-payment-methods-deposit-withdrawal-process__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-payment-methods-deposit-withdrawal-process__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-payment-methods-deposit-withdrawal-process__hero-button {
  display: inline-block;
  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-deposit-withdrawal-process__hero-button--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #0A2342; /* Primary color */
}

.page-payment-methods-deposit-withdrawal-process__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-payment-methods-deposit-withdrawal-process__hero-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-payment-methods-deposit-withdrawal-process__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  z-index: 1;
}

.page-payment-methods-deposit-withdrawal-process__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-withdrawal-process__overview-section,
.page-payment-methods-deposit-withdrawal-process__deposit-section,
.page-payment-methods-deposit-withdrawal-process__withdrawal-section,
.page-payment-methods-deposit-withdrawal-process__faq-section,
.page-payment-methods-deposit-withdrawal-process__responsible-gambling-cta,
.page-payment-methods-deposit-withdrawal-process__cta-final-section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark for sections */
  margin-bottom: 20px;
}

.page-payment-methods-deposit-withdrawal-process__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
}

.page-payment-methods-deposit-withdrawal-process__section-description {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

.page-payment-methods-deposit-withdrawal-process__card {
  background-color: #0A2342; /* Primary color for cards */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-payment-methods-deposit-withdrawal-process__card p {
  color: #f0f0f0;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-withdrawal-process__card-button {
  display: inline-block;
  background-color: #DC143C; /* Call to action red */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-payment-methods-deposit-withdrawal-process__card-button:hover {
  background-color: #c01230;
}

.page-payment-methods-deposit-withdrawal-process__process-image {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 50px auto 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page-payment-methods-deposit-withdrawal-process__note {
  font-style: italic;
  text-align: center;
  color: #e0e0e0;
  margin-top: 20px;
  font-size: 1em;
}

.page-payment-methods-deposit-withdrawal-process__section-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 15px 35px;
  background-color: #FFD700;
  color: #0A2342;
  font-weight: bold;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

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

.page-payment-methods-deposit-withdrawal-process__faq-item {
  background-color: #0A2342;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

.page-payment-methods-deposit-withdrawal-process__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

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

.page-payment-methods-deposit-withdrawal-process__faq-button {
  display: inline-block;
  background-color: #DC143C;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-payment-methods-deposit-withdrawal-process__faq-button:hover {
  background-color: #c01230;
}

.page-payment-methods-deposit-withdrawal-process__faq-image {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 50px auto 0;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page-payment-methods-deposit-withdrawal-process__responsible-gambling-cta {
  background-color: #1a1a1a;
  text-align: center;
  padding: 70px 20px;
}

.page-payment-methods-deposit-withdrawal-process__responsible-gambling-cta .page-payment-methods-deposit-withdrawal-process__section-title {
  color: #FFD700;
}

.page-payment-methods-deposit-withdrawal-process__responsible-gambling-cta .page-payment-methods-deposit-withdrawal-process__section-description {
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-payment-methods-deposit-withdrawal-process__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #DC143C;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-payment-methods-deposit-withdrawal-process__cta-final-section {
  text-align: center;
  padding-bottom: 80px;
  background-color: #0d0d0d;
}

.page-payment-methods-deposit-withdrawal-process__cta-final-section .page-payment-methods-deposit-withdrawal-process__section-title {
  color: #FFD700;
}

.page-payment-methods-deposit-withdrawal-process__cta-final-section .page-payment-methods-deposit-withdrawal-process__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-payment-methods-deposit-withdrawal-process__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.page-payment-methods-deposit-withdrawal-process__cta-button--primary {
  background-color: #FFD700;
  color: #0A2342;
}

.page-payment-methods-deposit-withdrawal-process__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-payment-methods-deposit-withdrawal-process__cta-button--secondary {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-payment-methods-deposit-withdrawal-process__cta-button--secondary:hover {
  background-color: #1a3c61;
}

.page-payment-methods-deposit-withdrawal-process__cta-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods-deposit-withdrawal-process__hero-title {
    font-size: 2.8em;
  }
  .page-payment-methods-deposit-withdrawal-process__section-title {
    font-size: 2em;
  }
  .page-payment-methods-deposit-withdrawal-process__hero-image-wrapper,
  .page-payment-methods-deposit-withdrawal-process__process-image,
  .page-payment-methods-deposit-withdrawal-process__faq-image,
  .page-payment-methods-deposit-withdrawal-process__cta-image {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-withdrawal-process {
    padding-top: var(--header-offset, 80px);
  }
  .page-payment-methods-deposit-withdrawal-process__hero-section {
    padding: 60px 20px 30px;
  }
  .page-payment-methods-deposit-withdrawal-process__hero-title {
    font-size: 2.2em;
  }
  .page-payment-methods-deposit-withdrawal-process__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods-deposit-withdrawal-process__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods-deposit-withdrawal-process__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-withdrawal-process__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-payment-methods-deposit-withdrawal-process__content-grid,
  .page-payment-methods-deposit-withdrawal-process__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-deposit-withdrawal-process__card-title {
    font-size: 1.3em;
  }
  .page-payment-methods-deposit-withdrawal-process__faq-question {
    font-size: 1.1em;
  }
  /* Mobile content area images must not overflow */
  .page-payment-methods-deposit-withdrawal-process img {
    max-width: 100%;
    height: auto;
  }
  /* Specific overrides to ensure image sizes are not smaller than 200px where applicable */
  .page-payment-methods-deposit-withdrawal-process__process-image,
  .page-payment-methods-deposit-withdrawal-process__faq-image,
  .page-payment-methods-deposit-withdrawal-process__cta-image {
    min-width: 200px; /* Enforce minimum width for content images */
    min-height: 200px; /* Enforce minimum height for content images */
  }
  .page-payment-methods-deposit-withdrawal-process__hero-image {
    min-width: 200px; 
    min-height: 200px; 
  }
}

@media (max-width: 480px) {
  .page-payment-methods-deposit-withdrawal-process__hero-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-withdrawal-process__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-payment-methods-deposit-withdrawal-process__section-title {
    font-size: 1.5em;
  }
  .page-payment-methods-deposit-withdrawal-process__faq-question {
    font-size: 1em;
  }
  .page-payment-methods-deposit-withdrawal-process__cta-buttons {
    flex-direction: column;
  }
}