.page-payment-methods-withdrawal-guide {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-button-color: #EA7C07;
}

.page-payment-methods-withdrawal-guide__hero-section {
  position: relative;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a7bb0 100%);
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

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

.page-payment-methods-withdrawal-guide__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

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

.page-payment-methods-withdrawal-guide__btn-primary,
.page-payment-methods-withdrawal-guide__btn-secondary,
.page-payment-methods-withdrawal-guide__contact-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods-withdrawal-guide__btn-primary {
  background-color: var(--login-button-color); /* Sử dụng màu login */
  color: var(--text-light);
  border: 2px solid var(--login-button-color);
}

.page-payment-methods-withdrawal-guide__btn-primary:hover {
  background-color: #e06c00;
  border-color: #e06c00;
  transform: translateY(-2px);
}

.page-payment-methods-withdrawal-guide__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-payment-methods-withdrawal-guide__btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.page-payment-methods-withdrawal-guide__intro-section,
.page-payment-methods-withdrawal-guide__conditions-section,
.page-payment-methods-withdrawal-guide__methods-section,
.page-payment-methods-withdrawal-guide__troubleshooting-section,
.page-payment-methods-withdrawal-guide__faq-section {
  padding: 60px 20px;
  color: var(--text-dark);
}

.page-payment-methods-withdrawal-guide__steps-section,
.page-payment-methods-withdrawal-guide__times-fees-section,
.page-payment-methods-withdrawal-guide__tips-section,
.page-payment-methods-withdrawal-guide__conclusion-section {
  padding: 60px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 20px;
  color: inherit;
}

.page-payment-methods-withdrawal-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  opacity: 0.9;
}

.page-payment-methods-withdrawal-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-payment-methods-withdrawal-guide__text-block p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05em;
}

.page-payment-methods-withdrawal-guide__image-wrapper {
  text-align: center;
}

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

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

.page-payment-methods-withdrawal-guide__card {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.page-payment-methods-withdrawal-guide__card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-payment-methods-withdrawal-guide__card p {
  line-height: 1.6;
}

.page-payment-methods-withdrawal-guide__card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-payment-methods-withdrawal-guide__card ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-payment-methods-withdrawal-guide__card ul li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-payment-methods-withdrawal-guide__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  counter-reset: step-counter;
}

.page-payment-methods-withdrawal-guide__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-withdrawal-guide__step-number {
  counter-increment: step-counter;
  font-size: 2.5em;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
}

.page-payment-methods-withdrawal-guide__step-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__step-item p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-payment-methods-withdrawal-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
  min-width: 200px; /* Ensure minimum size */
  min-height: 150px; /* Ensure minimum size */
}

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

.page-payment-methods-withdrawal-guide__info-block {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-withdrawal-guide__info-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--text-light);
}

.page-payment-methods-withdrawal-guide__info-block p {
  line-height: 1.6;
}

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

.page-payment-methods-withdrawal-guide__issue-item {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.page-payment-methods-withdrawal-guide__issue-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-payment-methods-withdrawal-guide__issue-item p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-payment-methods-withdrawal-guide__contact-button {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.page-payment-methods-withdrawal-guide__contact-button:hover {
  background-color: #1a7bb0;
  border-color: #1a7bb0;
}

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

.page-payment-methods-withdrawal-guide__faq-item {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

.page-payment-methods-withdrawal-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  list-style: none; /* For details/summary */
  user-select: none;
}

.page-payment-methods-withdrawal-guide__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

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

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

.page-payment-methods-withdrawal-guide__faq-answer {
  padding: 0 25px 20px 25px;
  line-height: 1.7;
  font-size: 1em;
  color: var(--text-dark);
}

.page-payment-methods-withdrawal-guide__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-payment-methods-withdrawal-guide__main-title {
    font-size: 2.2em;
  }

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

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

  .page-payment-methods-withdrawal-guide__content-grid {
    grid-template-columns: 1fr;
  }

  .page-payment-methods-withdrawal-guide__feature-cards,
  .page-payment-methods-withdrawal-guide__method-cards,
  .page-payment-methods-withdrawal-guide__tip-cards,
  .page-payment-methods-withdrawal-guide__step-by-step,
  .page-payment-methods-withdrawal-guide__info-blocks,
  .page-payment-methods-withdrawal-guide__issue-list {
    grid-template-columns: 1fr;
  }
}

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

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

  .page-payment-methods-withdrawal-guide__subtitle {
    font-size: 0.9em;
  }

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

  .page-payment-methods-withdrawal-guide__btn-primary,
  .page-payment-methods-withdrawal-guide__btn-secondary,
  .page-payment-methods-withdrawal-guide__contact-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
  }

  .page-payment-methods-withdrawal-guide__intro-section,
  .page-payment-methods-withdrawal-guide__conditions-section,
  .page-payment-methods-withdrawal-guide__methods-section,
  .page-payment-methods-withdrawal-guide__troubleshooting-section,
  .page-payment-methods-withdrawal-guide__faq-section,
  .page-payment-methods-withdrawal-guide__steps-section,
  .page-payment-methods-withdrawal-guide__times-fees-section,
  .page-payment-methods-withdrawal-guide__tips-section,
  .page-payment-methods-withdrawal-guide__conclusion-section {
    padding: 40px 15px;
  }

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

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

  .page-payment-methods-withdrawal-guide__text-block p,
  .page-payment-methods-withdrawal-guide__card p,
  .page-payment-methods-withdrawal-guide__info-block p,
  .page-payment-methods-withdrawal-guide__issue-item p,
  .page-payment-methods-withdrawal-guide__faq-answer p {
    font-size: 0.95em;
    line-height: 1.5;
  }

  .page-payment-methods-withdrawal-guide__card-title,
  .page-payment-methods-withdrawal-guide__step-title,
  .page-payment-methods-withdrawal-guide__info-title,
  .page-payment-methods-withdrawal-guide__issue-title {
    font-size: 1.2em;
  }

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

  .page-payment-methods-withdrawal-guide__section,
  .page-payment-methods-withdrawal-guide__card,
  .page-payment-methods-withdrawal-guide__container,
  .page-payment-methods-withdrawal-guide__step-item,
  .page-payment-methods-withdrawal-guide__info-block,
  .page-payment-methods-withdrawal-guide__issue-item,
  .page-payment-methods-withdrawal-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}