.page-resources-deposit-withdrawal-guide {
  color: #333333; /* Dark text on light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-resources-deposit-withdrawal-guide__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* White text on dark background */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-deposit-withdrawal-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly transparent to let text stand out */
  z-index: 1;
}

.page-resources-deposit-withdrawal-guide__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-resources-deposit-withdrawal-guide__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-resources-deposit-withdrawal-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-deposit-withdrawal-guide__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-resources-deposit-withdrawal-guide__hero-button:hover {
  background-color: #e0a73d;
}

.page-resources-deposit-withdrawal-guide__table-of-contents {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-deposit-withdrawal-guide__toc-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  text-align: center;
}

.page-resources-deposit-withdrawal-guide__toc-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.page-resources-deposit-withdrawal-guide__toc-list li {
  margin-bottom: 10px;
}

.page-resources-deposit-withdrawal-guide__toc-link {
  color: #000000;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-deposit-withdrawal-guide__toc-link:hover {
  color: #FCBC45;
  text-decoration: underline;
}

.page-resources-deposit-withdrawal-guide__section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-resources-deposit-withdrawal-guide__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-deposit-withdrawal-guide__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-deposit-withdrawal-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-deposit-withdrawal-guide__card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-deposit-withdrawal-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-deposit-withdrawal-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-deposit-withdrawal-guide__card-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-resources-deposit-withdrawal-guide__card-description {
  font-size: 0.95em;
  color: #555555;
}

.page-resources-deposit-withdrawal-guide__step-by-step {
  margin-top: 30px;
  counter-reset: step-counter;
}

.page-resources-deposit-withdrawal-guide__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  padding-left: 70px;
}

.page-resources-deposit-withdrawal-guide__step-number {
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on button */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-deposit-withdrawal-guide__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-resources-deposit-withdrawal-guide__step-description {
  font-size: 1.05em;
  color: #444444;
}

.page-resources-deposit-withdrawal-guide__call-to-action {
  text-align: center;
  margin-top: 40px;
}

.page-resources-deposit-withdrawal-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  margin: 0 10px;
}

.page-resources-deposit-withdrawal-guide__button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on button */
}

.page-resources-deposit-withdrawal-guide__button--register:hover {
  background-color: #e0a73d;
}

.page-resources-deposit-withdrawal-guide__button--support {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text */
  border: 1px solid #000000;
}

.page-resources-deposit-withdrawal-guide__button--support:hover {
  background-color: #333333;
}

.page-resources-deposit-withdrawal-guide__considerations-list {
  list-style: none;
  padding: 0;
}

.page-resources-deposit-withdrawal-guide__considerations-item {
  background-color: #f0f0f0;
  border-left: 5px solid #FCBC45; /* Login button color for accent */
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-resources-deposit-withdrawal-guide__considerations-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-resources-deposit-withdrawal-guide__considerations-description {
  font-size: 1.05em;
  color: #444444;
}

.page-resources-deposit-withdrawal-guide__faq-accordion {
  margin-top: 30px;
}

.page-resources-deposit-withdrawal-guide__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-deposit-withdrawal-guide__faq-question {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on button */
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-deposit-withdrawal-guide__faq-question:hover {
  background-color: #e0a73d;
}

.page-resources-deposit-withdrawal-guide__faq-question::after {
  content: '+';
  float: right;
  font-weight: bold;
}

.page-resources-deposit-withdrawal-guide__faq-question.active::after {
  content: '-';
}

.page-resources-deposit-withdrawal-guide__faq-answer {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-resources-deposit-withdrawal-guide__faq-answer p {
  padding: 15px 0;
  color: #444444;
  font-size: 1em;
}

.page-resources-deposit-withdrawal-guide__cta-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-resources-deposit-withdrawal-guide__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-resources-deposit-withdrawal-guide__cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-resources-deposit-withdrawal-guide__cta-title {
  font-size: 2.8em;
  color: #FCBC45; /* Login button color */
  margin-bottom: 20px;
}

.page-resources-deposit-withdrawal-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-deposit-withdrawal-guide__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on button */
}

.page-resources-deposit-withdrawal-guide__button--primary:hover {
  background-color: #e0a73d;
}

.page-resources-deposit-withdrawal-guide__button--secondary {
  background-color: #FFFFFF; /* White background */
  color: #000000; /* Dark text */
  border: 1px solid #FFFFFF;
}

.page-resources-deposit-withdrawal-guide__button--secondary:hover {
  background-color: #f0f0f0;
}

.page-resources-deposit-withdrawal-guide__back-link-container {
  text-align: center;
  margin: 40px auto 60px auto;
  max-width: 800px;
}

.page-resources-deposit-withdrawal-guide__back-link {
  font-size: 1.1em;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-deposit-withdrawal-guide__back-link:hover {
  color: #FCBC45;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-deposit-withdrawal-guide__hero-title {
    font-size: 2.5em;
  }
  .page-resources-deposit-withdrawal-guide__section-title {
    font-size: 2em;
  }
  .page-resources-deposit-withdrawal-guide__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-resources-deposit-withdrawal-guide__hero-section {
    padding: 40px 15px;
  }
  .page-resources-deposit-withdrawal-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-deposit-withdrawal-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-deposit-withdrawal-guide__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-deposit-withdrawal-guide__table-of-contents {
    margin: 30px auto;
    padding: 15px;
  }
  .page-resources-deposit-withdrawal-guide__toc-title {
    font-size: 1.5em;
  }
  .page-resources-deposit-withdrawal-guide__toc-link {
    font-size: 1em;
  }
  .page-resources-deposit-withdrawal-guide__section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-resources-deposit-withdrawal-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-deposit-withdrawal-guide__section-paragraph {
    font-size: 0.95em;
  }
  .page-resources-deposit-withdrawal-guide__card-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-deposit-withdrawal-guide__step-item {
    padding-left: 55px;
  }
  .page-resources-deposit-withdrawal-guide__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-resources-deposit-withdrawal-guide__step-title {
    font-size: 1.3em;
  }
  .page-resources-deposit-withdrawal-guide__step-description {
    font-size: 0.95em;
  }
  .page-resources-deposit-withdrawal-guide__button {
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 5px;
  }
  .page-resources-deposit-withdrawal-guide__considerations-title {
    font-size: 1.3em;
  }
  .page-resources-deposit-withdrawal-guide__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }
  .page-resources-deposit-withdrawal-guide__faq-answer p {
    font-size: 0.95em;
  }
  .page-resources-deposit-withdrawal-guide__cta-section {
    padding: 40px 15px;
  }
  .page-resources-deposit-withdrawal-guide__cta-title {
    font-size: 2em;
  }
  .page-resources-deposit-withdrawal-guide__cta-description {
    font-size: 1em;
  }
  .page-resources-deposit-withdrawal-guide__back-link-container {
    margin: 30px auto 40px auto;
  }
  .page-resources-deposit-withdrawal-guide__back-link {
    font-size: 1em;
  }

  /* Mobile content image constraint */
  .page-resources-deposit-withdrawal-guide img {
    max-width: 100%;
    height: auto;
  }
  .page-resources-deposit-withdrawal-guide__card-image {
    max-width: 100%;
    height: auto;
  }
  .page-resources-deposit-withdrawal-guide__cta-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure no image is smaller than 200px in content area, applies to all img selectors */
  .page-resources-deposit-withdrawal-guide img:not(.page-resources-deposit-withdrawal-guide__hero-image) {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-resources-deposit-withdrawal-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-deposit-withdrawal-guide__section-title {
    font-size: 1.6em;
  }
  .page-resources-deposit-withdrawal-guide__cta-title {
    font-size: 1.8em;
  }
  .page-resources-deposit-withdrawal-guide__button {
    display: block;
    margin: 10px auto;
  }
}