/* style/help-center-withdrawal-process.css */

/* Base styles for the page content */
.page-help-center-withdrawal-process {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #1A2B3C; /* Main dark background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-help-center-withdrawal-process__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A2B3C 0%, #0F1A25 100%); /* Darker gradient */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-help-center-withdrawal-process__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-help-center-withdrawal-process__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-help-center-withdrawal-process__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #C0C0C0;
}

.page-help-center-withdrawal-process__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2B3C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-help-center-withdrawal-process__cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-help-center-withdrawal-process__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.page-help-center-withdrawal-process__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* General Section Styling */
.page-help-center-withdrawal-process__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-help-center-withdrawal-process__section:last-of-type {
  border-bottom: none;
}

.page-help-center-withdrawal-process__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Introduction Section */
.page-help-center-withdrawal-process__introduction p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-help-center-withdrawal-process__introduction strong {
  color: #FFD700;
}

.page-help-center-withdrawal-process__link-button {
  display: inline-block;
  background-color: #2C4257; /* Darker blue button */
  color: #FFD700; /* Gold text */
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #FFD700;
  margin-top: 20px;
}

.page-help-center-withdrawal-process__link-button:hover {
  background-color: #FFD700;
  color: #1A2B3C;
}

/* Steps Section */
.page-help-center-withdrawal-process__step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-help-center-withdrawal-process__step-item {
  background-color: #2C4257;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-help-center-withdrawal-process__step-item:hover {
  transform: translateY(-5px);
}

.page-help-center-withdrawal-process__step-icon {
  background-color: #FFD700;
  color: #1A2B3C;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-help-center-withdrawal-process__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-help-center-withdrawal-process__step-item p {
  color: #C0C0C0;
}

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

/* Preparation, Timing, Limits & Fees, Tips Sections */
.page-help-center-withdrawal-process__list {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}

.page-help-center-withdrawal-process__list li {
  background-color: #2C4257;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-help-center-withdrawal-process__list li strong {
  color: #FFD700;
}

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

.page-help-center-withdrawal-process__method-item {
  background-color: #2C4257;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-help-center-withdrawal-process__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-help-center-withdrawal-process__method-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-help-center-withdrawal-process__method-item p {
  color: #C0C0C0;
}

/* FAQ Section */
.page-help-center-withdrawal-process__faq {
  background-color: #1A2B3C;
}

.page-help-center-withdrawal-process__faq-item {
  background-color: #2C4257;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-help-center-withdrawal-process__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-help-center-withdrawal-process__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-help-center-withdrawal-process__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-help-center-withdrawal-process__faq-answer {
  font-size: 1.05em;
  color: #C0C0C0;
  margin-top: 15px;
  display: none; /* Hidden by default */
  text-align: justify;
}

.page-help-center-withdrawal-process__faq-answer.active {
  display: block;
}

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

/* Final CTA Section */
.page-help-center-withdrawal-process__cta-final {
  text-align: center;
  padding: 80px 20px;
  background: #1A2B3C;
}

.page-help-center-withdrawal-process__cta-final p {
  font-size: 1.15em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-help-center-withdrawal-process__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-help-center-withdrawal-process__cta-button--primary {
  background-color: #FFD700;
  color: #1A2B3C;
  border: none;
}

.page-help-center-withdrawal-process__cta-button--primary:hover {
  background-color: #E6C200;
}

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

.page-help-center-withdrawal-process__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A2B3C;
}

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

  .page-help-center-withdrawal-process__subtitle {
    font-size: 1.2em;
  }

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

  .page-help-center-withdrawal-process__step-list {
    grid-template-columns: 1fr;
  }

  .page-help-center-withdrawal-process__method-grid {
    grid-template-columns: 1fr;
  }

  .page-help-center-withdrawal-process__cta-buttons {
    flex-direction: column;
  }
}

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

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

  .page-help-center-withdrawal-process__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-help-center-withdrawal-process__section {
    padding: 40px 0;
  }

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

  .page-help-center-withdrawal-process__step-item,
  .page-help-center-withdrawal-process__method-item,
  .page-help-center-withdrawal-process__faq-item {
    padding: 20px;
  }

  .page-help-center-withdrawal-process__faq-question {
    font-size: 1.1em;
  }
}