/* style/help-center-withdrawal-help.css */
.page-help-center-withdrawal-help {
  font-family: 'Arial', sans-serif;
  color: #f5e6ce; /* Lighter text for dark background */
  background-color: #0A1931;
  line-height: 1.6;
}

.page-help-center-withdrawal-help__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-help-center-withdrawal-help__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #203a64 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-help-center-withdrawal-help__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-help-center-withdrawal-help__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-help-center-withdrawal-help__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f5e6ce;
  position: relative;
  z-index: 1;
}

.page-help-center-withdrawal-help__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-help-center-withdrawal-help__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-help-center-withdrawal-help__btn--primary {
  background-color: #FFD700;
  color: #0A1931;
  border: 2px solid #FFD700;
}

.page-help-center-withdrawal-help__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-help-center-withdrawal-help__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-help-center-withdrawal-help__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-2px);
}

.page-help-center-withdrawal-help__content-section {
  padding: 60px 0;
  color: #f5e6ce;
}

.page-help-center-withdrawal-help__content-section--alt-bg {
  background-color: #1a2c4a;
}

.page-help-center-withdrawal-help__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-help-center-withdrawal-help__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-help-center-withdrawal-help__subsection-title {
  font-size: 1.8em;
  color: #f5e6ce;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-help-center-withdrawal-help__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-help-center-withdrawal-help__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-help-center-withdrawal-help__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-help-center-withdrawal-help__list--ordered {
  list-style-type: decimal;
}

.page-help-center-withdrawal-help__list li {
  margin-bottom: 10px;
}

.page-help-center-withdrawal-help__link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-help-center-withdrawal-help__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-help-center-withdrawal-help__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-help-center-withdrawal-help__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-help-center-withdrawal-help__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-help-center-withdrawal-help__cta-inner {
  background-color: #0A1931;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #FFD700;
}

.page-help-center-withdrawal-help__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-help-center-withdrawal-help__hero-title {
    font-size: 2.5em;
  }

  .page-help-center-withdrawal-help__hero-description {
    font-size: 1.1em;
  }

  .page-help-center-withdrawal-help__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-help-center-withdrawal-help__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-help-center-withdrawal-help__section-title {
    font-size: 2em;
  }

  .page-help-center-withdrawal-help__subsection-title {
    font-size: 1.5em;
  }

  .page-help-center-withdrawal-help__text,
  .page-help-center-withdrawal-help__list li {
    font-size: 1em;
  }

  .page-help-center-withdrawal-help__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-help-center-withdrawal-help__hero-title {
    font-size: 2em;
  }

  .page-help-center-withdrawal-help__hero-description {
    font-size: 1em;
  }

  .page-help-center-withdrawal-help__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-help-center-withdrawal-help__section-title {
    font-size: 1.8em;
  }

  .page-help-center-withdrawal-help__subsection-title {
    font-size: 1.3em;
  }

  .page-help-center-withdrawal-help__cta-inner {
    padding: 30px;
  }
}