/* style/help-center-withdrawal-process.css */
.page-help-center-withdrawal-process {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2342; /* Deep blue main background */
}

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

.page-help-center-withdrawal-process__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A5E 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

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

.page-help-center-withdrawal-process__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.page-help-center-withdrawal-process__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-help-center-withdrawal-process__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

.page-help-center-withdrawal-process__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

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

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

.page-help-center-withdrawal-process__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-help-center-withdrawal-process__steps-section,
.page-help-center-withdrawal-process__conditions-section,
.page-help-center-withdrawal-process__processing-info-section,
.page-help-center-withdrawal-process__faq-section,
.page-help-center-withdrawal-process__contact-section {
  padding: 80px 0;
  background-color: #1A3A5E; /* Slightly lighter dark blue for sections */
  margin-bottom: 20px;
}

.page-help-center-withdrawal-process__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-help-center-withdrawal-process__step-card {
  background-color: #0A2342; /* Deep blue card background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-help-center-withdrawal-process__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-help-center-withdrawal-process__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFD700;
}

.page-help-center-withdrawal-process__step-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for step titles */
  margin-bottom: 15px;
}

.page-help-center-withdrawal-process__step-description {
  font-size: 1em;
  color: #C0C0C0; /* Lighter gray for descriptions */
  line-height: 1.5;
}

.page-help-center-withdrawal-process__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  text-align: center;
  color: #E0E0E0;
}

.page-help-center-withdrawal-process__checklist {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-help-center-withdrawal-process__checklist li {
  background-color: #0A2342; /* Deep blue list item background */
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-help-center-withdrawal-process__checklist li i {
  color: #FFD700; /* Gold checkmark icon */
  font-size: 1.5em;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-help-center-withdrawal-process__list-item-text {
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-help-center-withdrawal-process__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-help-center-withdrawal-process__info-card {
  background-color: #0A2342;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-help-center-withdrawal-process__info-card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: center;
}

.page-help-center-withdrawal-process__info-card-description {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-help-center-withdrawal-process__bullet-list {
  list-style: none;
  padding-left: 0;
}

.page-help-center-withdrawal-process__bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #E0E0E0;
  font-size: 1em;
}

.page-help-center-withdrawal-process__bullet-list li::before {
  content: '•';
  color: #FFD700; /* Gold bullet point */
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-help-center-withdrawal-process__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-help-center-withdrawal-process__accordion-item {
  background-color: #0A2342;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-help-center-withdrawal-process__accordion-header {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1A3A5E; /* Darker header for contrast */
  transition: background-color 0.3s ease;
}

.page-help-center-withdrawal-process__accordion-header:hover {
  background-color: #2D527A;
}

.page-help-center-withdrawal-process__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-help-center-withdrawal-process__accordion-item.active .page-help-center-withdrawal-process__accordion-header::after {
  content: '-';
  transform: rotate(180deg);
}

.page-help-center-withdrawal-process__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  color: #C0C0C0;
  line-height: 1.6;
}

.page-help-center-withdrawal-process__accordion-item.active .page-help-center-withdrawal-process__accordion-content {
  max-height: 500px; /* Adjust based on expected content length */
  padding: 20px 25px 25px;
}

.page-help-center-withdrawal-process__contact-section {
  text-align: center;
  padding-bottom: 100px;
}

/* FontAwesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

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

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

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

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

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

  .page-help-center-withdrawal-process__steps-grid,
  .page-help-center-withdrawal-process__info-grid {
    grid-template-columns: 1fr;
  }

  .page-help-center-withdrawal-process__checklist li {
    padding: 15px;
  }

  .page-help-center-withdrawal-process__list-item-text {
    font-size: 0.95em;
  }

  .page-help-center-withdrawal-process__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-help-center-withdrawal-process__accordion-content {
    padding: 15px 20px;
  }
}

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

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

  .page-help-center-withdrawal-process__button {
    width: 90%;
  }

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

  .page-help-center-withdrawal-process__step-card,
  .page-help-center-withdrawal-process__info-card,
  .page-help-center-withdrawal-process__accordion-item {
    padding: 20px;
  }
}