.page-deposits-withdrawals-withdrawal-process-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-deposits-withdrawals-withdrawal-process-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-deposits-withdrawals-withdrawal-process-guide__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-deposits-withdrawals-withdrawal-process-guide__main-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFCC00; /* Golden yellow for title */
  font-weight: bold;
}

.page-deposits-withdrawals-withdrawal-process-guide__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-deposits-withdrawals-withdrawal-process-guide__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-deposits-withdrawals-withdrawal-process-guide__btn--primary {
  background-color: #FFCC00; /* Golden yellow */
  color: #003366; /* Deep blue text */
}

.page-deposits-withdrawals-withdrawal-process-guide__btn--primary:hover {
  background-color: #e6b800;
  color: #002244;
}

.page-deposits-withdrawals-withdrawal-process-guide__btn--secondary {
  background-color: #003366; /* Deep blue */
  color: #FFCC00; /* Golden yellow text */
  border: 2px solid #FFCC00;
}

.page-deposits-withdrawals-withdrawal-process-guide__btn--secondary:hover {
  background-color: #002244;
  color: #ffe066;
}

.page-deposits-withdrawals-withdrawal-process-guide__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-deposits-withdrawals-withdrawal-process-guide__heading {
  font-size: 2em;
  color: #003366; /* Deep blue */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 10px;
}

.page-deposits-withdrawals-withdrawal-process-guide__sub-heading {
  font-size: 1.5em;
  color: #004d99; /* Slightly lighter blue */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-deposits-withdrawals-withdrawal-process-guide__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-deposits-withdrawals-withdrawal-process-guide__list li {
  margin-bottom: 10px;
  color: #444;
}

.page-deposits-withdrawals-withdrawal-process-guide__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-deposits-withdrawals-withdrawal-process-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-deposits-withdrawals-withdrawal-process-guide__main-title {
    font-size: 2em;
  }

  .page-deposits-withdrawals-withdrawal-process-guide__subtitle {
    font-size: 1em;
  }

  .page-deposits-withdrawals-withdrawal-process-guide__heading {
    font-size: 1.8em;
  }

  .page-deposits-withdrawals-withdrawal-process-guide__sub-heading {
    font-size: 1.3em;
  }

  .page-deposits-withdrawals-withdrawal-process-guide__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-deposits-withdrawals-withdrawal-process-guide__main-title {
    font-size: 1.6em;
  }

  .page-deposits-withdrawals-withdrawal-process-guide__heading {
    font-size: 1.5em;
  }

  .page-deposits-withdrawals-withdrawal-process-guide__sub-heading {
    font-size: 1.2em;
  }
}