.page-payment-methods-fast-withdrawal-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default light text for dark body background */
  background-color: var(--black-color); /* Inherit from shared.css */
}

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

/* Hero Section */
.page-payment-methods-fast-withdrawal-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  box-sizing: border-box;
}

.page-payment-methods-fast-withdrawal-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-payment-methods-fast-withdrawal-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-payment-methods-fast-withdrawal-guide__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 900px;
}

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

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

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

/* General Section Styling */
.page-payment-methods-fast-withdrawal-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
  font-weight: bold;
}

.page-payment-methods-fast-withdrawal-guide__text-block {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Light Background Section */
.page-payment-methods-fast-withdrawal-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
  padding: 80px 0;
}

.page-payment-methods-fast-withdrawal-guide__light-bg .page-payment-methods-fast-withdrawal-guide__section-title {
  color: #26A9E0;
}

.page-payment-methods-fast-withdrawal-guide__light-bg .page-payment-methods-fast-withdrawal-guide__text-block {
  color: #333333;
}

/* Dark Background Section */
.page-payment-methods-fast-withdrawal-guide__dark-bg {
  background-color: #000000; /* Use black for contrast with light text */
  color: #ffffff;
  padding: 80px 0;
}

.page-payment-methods-fast-withdrawal-guide__dark-bg .page-payment-methods-fast-withdrawal-guide__section-title {
  color: #26A9E0;
}

.page-payment-methods-fast-withdrawal-guide__dark-bg .page-payment-methods-fast-withdrawal-guide__text-block {
  color: #f0f0f0;
}

/* Buttons */
.page-payment-methods-fast-withdrawal-guide__btn-primary,
.page-payment-methods-fast-withdrawal-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods-fast-withdrawal-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

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

.page-payment-methods-fast-withdrawal-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Intro Section */
.page-payment-methods-fast-withdrawal-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-payment-methods-fast-withdrawal-guide__benefit-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.page-payment-methods-fast-withdrawal-guide__benefit-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods-fast-withdrawal-guide__benefit-item p {
  color: #555555;
}

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

.page-payment-methods-fast-withdrawal-guide__method-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-payment-methods-fast-withdrawal-guide__method-title {
  font-size: 1.6em;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-payment-methods-fast-withdrawal-guide__method-description {
  color: #f0f0f0;
}

/* Process Section */
.page-payment-methods-fast-withdrawal-guide__process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-payment-methods-fast-withdrawal-guide__step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid #e0e0e0;
}

.page-payment-methods-fast-withdrawal-guide__step-number {
  width: 60px;
  height: 60px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

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

.page-payment-methods-fast-withdrawal-guide__step-item p {
  color: #555555;
}

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

/* Factors Section */
.page-payment-methods-fast-withdrawal-guide__factor-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-fast-withdrawal-guide__factor-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  border-left: 5px solid #26A9E0;
}

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

.page-payment-methods-fast-withdrawal-guide__factor-item p {
  color: #f0f0f0;
}

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

.page-payment-methods-fast-withdrawal-guide__tip-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  border: 1px solid #e0e0e0;
}

.page-payment-methods-fast-withdrawal-guide__tip-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods-fast-withdrawal-guide__tip-card p {
  color: #555555;
}

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

/* FAQ Section */
.page-payment-methods-fast-withdrawal-guide__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-payment-methods-fast-withdrawal-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-payment-methods-fast-withdrawal-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #000000; /* Darker background for question */
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-payment-methods-fast-withdrawal-guide__faq-title {
  margin: 0;
  color: #ffffff;
}

.page-payment-methods-fast-withdrawal-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

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

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

.page-payment-methods-fast-withdrawal-guide__faq-item.active .page-payment-methods-fast-withdrawal-guide__faq-question {
  background-color: #1a1a1a;
}

.page-payment-methods-fast-withdrawal-guide__faq-item.active .page-payment-methods-fast-withdrawal-guide__faq-toggle {
  transform: rotate(0deg); /* Reset for minus sign */
}

.page-payment-methods-fast-withdrawal-guide__faq-answer p {
  margin: 0;
  color: #f0f0f0;
}

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

/* CTA Section */
.page-payment-methods-fast-withdrawal-guide__cta-section {
  padding: 60px 0;
  text-align: center;
}

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

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

  .page-payment-methods-fast-withdrawal-guide__hero-description {
    font-size: 1.1em;
  }

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

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

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

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

  .page-payment-methods-fast-withdrawal-guide__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods-fast-withdrawal-guide__btn-primary,
  .page-payment-methods-fast-withdrawal-guide__btn-secondary,
  .page-payment-methods-fast-withdrawal-guide a[class*="button"],
  .page-payment-methods-fast-withdrawal-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods-fast-withdrawal-guide__cta-buttons,
  .page-payment-methods-fast-withdrawal-guide__button-group,
  .page-payment-methods-fast-withdrawal-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }

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

  .page-payment-methods-fast-withdrawal-guide__text-block,
  .page-payment-methods-fast-withdrawal-guide p,
  .page-payment-methods-fast-withdrawal-guide li {
    font-size: 0.95em;
  }

  .page-payment-methods-fast-withdrawal-guide__benefit-item,
  .page-payment-methods-fast-withdrawal-guide__method-card,
  .page-payment-methods-fast-withdrawal-guide__step-item,
  .page-payment-methods-fast-withdrawal-guide__tip-card {
    padding: 20px;
  }

  .page-payment-methods-fast-withdrawal-guide__benefit-title,
  .page-payment-methods-fast-withdrawal-guide__method-title,
  .page-payment-methods-fast-withdrawal-guide__step-title,
  .page-payment-methods-fast-withdrawal-guide__factor-title,
  .page-payment-methods-fast-withdrawal-guide__tip-title {
    font-size: 1.3em;
  }

  .page-payment-methods-fast-withdrawal-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-payment-methods-fast-withdrawal-guide__section,
  .page-payment-methods-fast-withdrawal-guide__card,
  .page-payment-methods-fast-withdrawal-guide__container,
  .page-payment-methods-fast-withdrawal-guide__video-section,
  .page-payment-methods-fast-withdrawal-guide__video-container,
  .page-payment-methods-fast-withdrawal-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

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

@media (max-width: 480px) {
  .page-payment-methods-fast-withdrawal-guide__hero-section {
    height: 400px;
  }

  .page-payment-methods-fast-withdrawal-guide__hero-title {
    font-size: 1.8em;
  }

  .page-payment-methods-fast-withdrawal-guide__hero-description {
    font-size: 0.9em;
  }

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

  .page-payment-methods-fast-withdrawal-guide__hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* Ensure content images are at least 200px wide */
.page-payment-methods-fast-withdrawal-guide__hero-image,
.page-payment-methods-fast-withdrawal-guide__method-image,
.page-payment-methods-fast-withdrawal-guide__process-image,
.page-payment-methods-fast-withdrawal-guide__tips-image,
.page-payment-methods-fast-withdrawal-guide__faq-image {
  min-width: 200px;
  min-height: 200px;
}

/* Content area images CSS size lower bound (not by class name) */
.page-payment-methods-fast-withdrawal-guide img {
  /* This rule applies to all images within the main content area */
  /* It ensures images are not displayed smaller than 200px */
  /* If width/height attributes are smaller, they will be overridden by responsive CSS */
  /* But the display size should not be forced below 200px by page-specific CSS */
}

@media (max-width: 768px) {
  .page-payment-methods-fast-withdrawal-guide img {
    /* Mobile specific rule for all images in content area */
    /* This ensures images scale down but don't cause overflow, and maintain minimum size if possible */
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Color Contrast Fixes (if needed, ensure WCAG AA) */
.page-payment-methods-fast-withdrawal-guide__dark-bg {
  color: #ffffff;
  background: #000000; /* Ensuring black background for dark sections */
}

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

.page-payment-methods-fast-withdrawal-guide__method-card,
.page-payment-methods-fast-withdrawal-guide__faq-item {
  background-color: rgba(38, 169, 224, 0.1); /* Slightly transparent brand color for cards on dark background */
  color: #ffffff;
  border: 1px solid rgba(38, 169, 224, 0.3);
}

.page-payment-methods-fast-withdrawal-guide__faq-question {
  background-color: #26A9E0; /* Brand color for FAQ question on dark background */
  color: #ffffff;
}

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

.page-payment-methods-fast-withdrawal-guide__faq-item.active .page-payment-methods-fast-withdrawal-guide__faq-question {
  background-color: #1a7fb8;
}