/* style/payment-methods-withdrawal-process.css */
.page-payment-methods-withdrawal-process {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
}

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

.page-payment-methods-withdrawal-process__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
}

.page-payment-methods-withdrawal-process__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}

.page-payment-methods-withdrawal-process__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-withdrawal-process__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
}

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

.page-payment-methods-withdrawal-process__btn-register,
.page-payment-methods-withdrawal-process__btn-login {
  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;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-payment-methods-withdrawal-process__btn-register {
  background-color: #C30808; /* Custom Register color */
  color: #FFFF00; /* Custom Register font color */
  border: 2px solid #C30808;
}

.page-payment-methods-withdrawal-process__btn-register:hover {
  background-color: #e02020;
  transform: translateY(-2px);
}

.page-payment-methods-withdrawal-process__btn-login {
  background-color: #C30808; /* Custom Login color */
  color: #FFFF00; /* Custom Login font color */
  border: 2px solid #C30808;
}

.page-payment-methods-withdrawal-process__btn-login:hover {
  background-color: #e02020;
  transform: translateY(-2px);
}

.page-payment-methods-withdrawal-process__section {
  padding: 60px 0;
}

.page-payment-methods-withdrawal-process__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

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

.page-payment-methods-withdrawal-process__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

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

.page-payment-methods-withdrawal-process__card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #333333; /* For light background cards */
}

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

.page-payment-methods-withdrawal-process__card-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #017439;
  font-weight: bold;
}

.page-payment-methods-withdrawal-process__card-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-payment-methods-withdrawal-process__card-list {
  list-style: none;
  padding: 0;
  margin-top: auto; /* Push list to bottom */
}

.page-payment-methods-withdrawal-process__card-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-payment-methods-withdrawal-process__list-icon {
  margin-right: 10px;
  font-weight: bold;
  color: #017439;
  font-size: 1.2em;
}

.page-payment-methods-withdrawal-process__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-payment-methods-withdrawal-process__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  padding-left: 70px;
}

.page-payment-methods-withdrawal-process__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #017439;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-withdrawal-process__step-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #017439;
  font-weight: bold;
}

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

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

.page-payment-methods-withdrawal-process__info-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #333333; /* For light background cards */
}

.page-payment-methods-withdrawal-process__info-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #017439;
  font-weight: bold;
}

.page-payment-methods-withdrawal-process__info-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 1em;
}

.page-payment-methods-withdrawal-process__info-list li {
  margin-bottom: 10px;
}

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

.page-payment-methods-withdrawal-process__issue-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #f8f8f8;
  color: #333333;
}

.page-payment-methods-withdrawal-process__issue-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #C30808;
  font-weight: bold;
}

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

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

.page-payment-methods-withdrawal-process__tip-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-withdrawal-process__tip-icon {
  font-size: 1.8em;
  color: #FFFF00;
  margin-right: 15px;
  line-height: 1;
}

.page-payment-methods-withdrawal-process__tip-text {
  font-size: 1.1em;
  color: #ffffff;
  margin: 0;
}

.page-payment-methods-withdrawal-process__btn-primary {
  display: inline-block;
  background-color: #017439;
  color: #ffffff;
  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;
  margin-top: 20px;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
  border: 2px solid transparent;
}

.page-payment-methods-withdrawal-process__btn-primary:hover {
  background-color: #005f2e;
  transform: translateY(-2px);
}

.page-payment-methods-withdrawal-process__faq-list {
  margin-top: 30px;
}

.page-payment-methods-withdrawal-process__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-payment-methods-withdrawal-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #017439;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-payment-methods-withdrawal-process__faq-question:hover {
  background-color: #005f2e;
}

.page-payment-methods-withdrawal-process__faq-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
  flex-grow: 1;
}

.page-payment-methods-withdrawal-process__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-payment-methods-withdrawal-process__faq-item.active .page-payment-methods-withdrawal-process__faq-toggle {
  transform: rotate(45deg);
}

.page-payment-methods-withdrawal-process__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-payment-methods-withdrawal-process__faq-item.active .page-payment-methods-withdrawal-process__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

/* Color Contrast Specifics */
.page-payment-methods-withdrawal-process__dark-bg {
  background-color: #121212; /* Body background */
  color: #ffffff;
}

.page-payment-methods-withdrawal-process__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-payment-methods-withdrawal-process__section-title,
.page-payment-methods-withdrawal-process__hero-title {
  color: #ffffff;
}

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

@media (max-width: 768px) {
  .page-payment-methods-withdrawal-process__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-payment-methods-withdrawal-process__hero-title {
    font-size: 2.2em;
  }

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

  .page-payment-methods-withdrawal-process__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }

  .page-payment-methods-withdrawal-process__btn-register,
  .page-payment-methods-withdrawal-process__btn-login,
  .page-payment-methods-withdrawal-process__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-payment-methods-withdrawal-process__section {
    padding: 40px 0;
  }

  .page-payment-methods-withdrawal-process__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

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

  .page-payment-methods-withdrawal-process__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 20px auto;
  }

  .page-payment-methods-withdrawal-process__grid,
  .page-payment-methods-withdrawal-process__info-grid,
  .page-payment-methods-withdrawal-process__issue-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-payment-methods-withdrawal-process__card,
  .page-payment-methods-withdrawal-process__info-card,
  .page-payment-methods-withdrawal-process__issue-card,
  .page-payment-methods-withdrawal-process__tip-item {
    padding: 20px;
  }

  .page-payment-methods-withdrawal-process__card-title,
  .page-payment-methods-withdrawal-process__info-title,
  .page-payment-methods-withdrawal-process__issue-title {
    font-size: 1.4em;
  }

  .page-payment-methods-withdrawal-process__step-item {
    padding-left: 60px;
  }

  .page-payment-methods-withdrawal-process__step-item::before {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }

  .page-payment-methods-withdrawal-process__step-title {
    font-size: 1.3em;
  }

  .page-payment-methods-withdrawal-process__faq-question {
    padding: 15px;
    font-size: 1em;
  }

  .page-payment-methods-withdrawal-process__faq-title {
    font-size: 1em;
  }

  .page-payment-methods-withdrawal-process__faq-answer {
    padding: 15px;
  }

  /* Ensure all containers with images/videos/buttons are constrained */
  .page-payment-methods-withdrawal-process__container,
  .page-payment-methods-withdrawal-process__hero-section,
  .page-payment-methods-withdrawal-process__section,
  .page-payment-methods-withdrawal-process__grid,
  .page-payment-methods-withdrawal-process__info-grid,
  .page-payment-methods-withdrawal-process__issue-grid,
  .page-payment-methods-withdrawal-process__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-payment-methods-withdrawal-process__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods-withdrawal-process img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

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

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