/* style/resources-how-to-efficiently-withdraw-from-qh88.css */
.page-resources-how-to-efficiently-withdraw-from-qh88 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #000000; /* From shared.css body background */
}

.page-resources-how-to-efficiently-withdraw-from-qh88__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
  min-height: 500px;
  color: #ffffff;
  background-color: #000000; /* Matching body background */
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-resources-how-to-efficiently-withdraw-from-qh88__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.3;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-efficiently-withdraw-from-qh88__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  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-resources-how-to-efficiently-withdraw-from-qh88__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__btn-primary:hover {
  background-color: #1a7bb0;
  transform: translateY(-2px);
}

.page-resources-how-to-efficiently-withdraw-from-qh88__btn-primary--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__btn-secondary:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-resources-how-to-efficiently-withdraw-from-qh88__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333333; /* Light background, dark text */
}

.page-resources-how-to-efficiently-withdraw-from-qh88__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__section-title--white {
  color: #ffffff;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__section-title--white::after {
  background-color: #ffffff;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__paragraph--white {
  color: #f0f0f0;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__card {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__card:hover {
  transform: translateY(-5px);
}

.page-resources-how-to-efficiently-withdraw-from-qh88__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__video-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  background-color: #000000; /* Dark background for video */
  color: #ffffff;
  text-align: center;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__video-container {
  max-width: 1280px;
  margin: 40px auto 0;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: #000000;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__method-section {
  margin-bottom: 50px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__method-title {
  font-size: 2em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__sub-title {
  font-size: 1.3em;
  color: #333333;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__ordered-list,
.page-resources-how-to-efficiently-withdraw-from-qh88__unordered-list {
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__ordered-list li,
.page-resources-how-to-efficiently-withdraw-from-qh88__unordered-list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__content-image {
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  height: auto;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__content-image--large {
  width: 100%;
  max-width: 1000px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__cta-banner {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__issue-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__faq-section {
  background-color: #000000; /* Dark background for FAQ */
  color: #ffffff;
  padding: 80px 20px;
  margin-top: 60px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__faq-question:hover {
  background-color: #1a7bb0;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: #ffffff;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__faq-item.active .page-resources-how-to-efficiently-withdraw-from-qh88__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-how-to-efficiently-withdraw-from-qh88__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__faq-item.active .page-resources-how-to-efficiently-withdraw-from-qh88__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__faq-answer p {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-resources-how-to-efficiently-withdraw-from-qh88__conclusion-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
  color: #333333;
}