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

.page-payment-methods-withdrawal-guide__dark-bg {
  background-color: #1A202C;
  color: #ffffff;
}

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

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

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

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

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

.page-payment-methods-withdrawal-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

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

.page-payment-methods-withdrawal-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods-withdrawal-guide__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-payment-methods-withdrawal-guide__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

.page-payment-methods-withdrawal-guide__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-payment-methods-withdrawal-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-payment-methods-withdrawal-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: inherit; /* Inherits from section background */
}

.page-payment-methods-withdrawal-guide__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

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

.page-payment-methods-withdrawal-guide__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: transform 0.3s ease;
}

.page-payment-methods-withdrawal-guide__feature-item:hover {
  transform: translateY(-10px);
}

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

.page-payment-methods-withdrawal-guide__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}

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

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

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

.page-payment-methods-withdrawal-guide__step-icon {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
  display: block;
}

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

.page-payment-methods-withdrawal-guide__step-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-payment-methods-withdrawal-guide__video-wrapper {
  margin-top: 60px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-payment-methods-withdrawal-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-payment-methods-withdrawal-guide__video-caption {
  color: #f0f0f0;
  margin-top: 20px;
  font-style: italic;
  font-size: 0.9em;
}

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

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

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

.page-payment-methods-withdrawal-guide__method-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-payment-methods-withdrawal-guide__method-text {
  font-size: 0.95em;
  color: #555555;
}

.page-payment-methods-withdrawal-guide__checklist {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-payment-methods-withdrawal-guide__checklist-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-payment-methods-withdrawal-guide__checklist-icon {
  font-size: 1.5em;
  color: #FFD700;
  margin-right: 15px;
  line-height: 1;
}

.page-payment-methods-withdrawal-guide__checklist-text {
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-payment-methods-withdrawal-guide__support-cta {
  margin-top: 50px;
  text-align: center;
}

.page-payment-methods-withdrawal-guide__support-text {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-payment-methods-withdrawal-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-payment-methods-withdrawal-guide__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-payment-methods-withdrawal-guide__faq-item.active {
  border-color: #FFD700;
}

.page-payment-methods-withdrawal-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f5f5f5;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-payment-methods-withdrawal-guide__faq-question:hover {
  background-color: #ececec;
}

.page-payment-methods-withdrawal-guide__faq-title {
  font-size: 1.2em;
  color: #1A202C;
  margin: 0;
}

.page-payment-methods-withdrawal-guide__faq-toggle {
  font-size: 1.5em;
  color: #1A202C;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.page-payment-methods-withdrawal-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
}

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

.page-payment-methods-withdrawal-guide__faq-text {
  font-size: 1em;
  color: #555555;
  margin: 0;
}

/* Global image sizing for content area */
.page-payment-methods-withdrawal-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure images fill their area without distortion */
}

/* CSS for all content area images to ensure minimum size (200x200) */
.page-payment-methods-withdrawal-guide__hero-image,
.page-payment-methods-withdrawal-guide__method-icon,
.page-payment-methods-withdrawal-guide__video {
  min-width: 200px;
  min-height: 200px;
}


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

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

@media (max-width: 768px) {
  .page-payment-methods-withdrawal-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-payment-methods-withdrawal-guide__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-payment-methods-withdrawal-guide__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-payment-methods-withdrawal-guide__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

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

  .page-payment-methods-withdrawal-guide__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-payment-methods-withdrawal-guide__feature-list,
  .page-payment-methods-withdrawal-guide__steps-grid,
  .page-payment-methods-withdrawal-guide__methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-payment-methods-withdrawal-guide__feature-item,
  .page-payment-methods-withdrawal-guide__step-card,
  .page-payment-methods-withdrawal-guide__method-card {
    padding: 25px;
  }

  .page-payment-methods-withdrawal-guide__video-wrapper {
    margin-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
  }

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

  .page-payment-methods-withdrawal-guide__checklist {
    padding: 0 15px;
  }

  .page-payment-methods-withdrawal-guide__checklist-icon {
    font-size: 1.3em;
    margin-right: 10px;
  }

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

  .page-payment-methods-withdrawal-guide__faq-list {
    padding: 0 15px;
  }

  .page-payment-methods-withdrawal-guide__faq-question {
    padding: 15px;
  }

  .page-payment-methods-withdrawal-guide__faq-title {
    font-size: 1.1em;
  }

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

  .page-payment-methods-withdrawal-guide__faq-item.active .page-payment-methods-withdrawal-guide__faq-answer {
    padding: 15px;
  }

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

  .page-payment-methods-withdrawal-guide__support-cta,
  .page-payment-methods-withdrawal-guide__cta-section .page-payment-methods-withdrawal-guide__container {
    padding: 0 15px;
  }

  /* Mobile image and container responsiveness */
  .page-payment-methods-withdrawal-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-payment-methods-withdrawal-guide__section,
  .page-payment-methods-withdrawal-guide__card,
  .page-payment-methods-withdrawal-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Ensure content containers have padding */
  .page-payment-methods-withdrawal-guide__section:not(.page-payment-methods-withdrawal-guide__hero-section) .page-payment-methods-withdrawal-guide__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@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;
  }
}