.page-resources-dabet-us-deposit-withdrawal {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-resources-dabet-us-deposit-withdrawal__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-dabet-us-deposit-withdrawal__hero-section {
  position: relative;
  background: linear-gradient(135deg, #017439, #005a2e);
  color: #FFFFFF;
  padding: 80px 0 60px;
  text-align: center;
  padding-top: var(--header-offset, 120px);
}

.page-resources-dabet-us-deposit-withdrawal__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-resources-dabet-us-deposit-withdrawal__hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.page-resources-dabet-us-deposit-withdrawal__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-dabet-us-deposit-withdrawal__btn-primary,
.page-resources-dabet-us-deposit-withdrawal__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-resources-dabet-us-deposit-withdrawal__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-resources-dabet-us-deposit-withdrawal__btn-primary:hover {
  background-color: #e00b0b;
  border-color: #e00b0b;
}

.page-resources-dabet-us-deposit-withdrawal__btn-secondary {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-resources-dabet-us-deposit-withdrawal__btn-secondary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

.page-resources-dabet-us-deposit-withdrawal__section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-resources-dabet-us-deposit-withdrawal__section-title {
  font-size: 2.2em;
  color: #017439;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-dabet-us-deposit-withdrawal__section-intro {
  font-size: 1.05em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-resources-dabet-us-deposit-withdrawal__subsection-title {
  font-size: 1.8em;
  color: #017439;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-dabet-us-deposit-withdrawal__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-dabet-us-deposit-withdrawal__step-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-resources-dabet-us-deposit-withdrawal__step-number {
  font-weight: bold;
  color: #017439;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-resources-dabet-us-deposit-withdrawal__note-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-top: 30px;
  color: #555555;
}

.page-resources-dabet-us-deposit-withdrawal__note-list li {
  margin-bottom: 10px;
}

.page-resources-dabet-us-deposit-withdrawal__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-dabet-us-deposit-withdrawal__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: block; /* Ensure no extra space below image */
  margin: 0 auto;
}

.page-resources-dabet-us-deposit-withdrawal__faq-section {
  background-color: #f0f8f0;
}

.page-resources-dabet-us-deposit-withdrawal__faq-list {
  margin-top: 40px;
}

.page-resources-dabet-us-deposit-withdrawal__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-resources-dabet-us-deposit-withdrawal__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-dabet-us-deposit-withdrawal__faq-question:hover {
  background-color: #e6f7e6;
}

.page-resources-dabet-us-deposit-withdrawal__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-dabet-us-deposit-withdrawal__faq-item.active .page-resources-dabet-us-deposit-withdrawal__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-resources-dabet-us-deposit-withdrawal__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-resources-dabet-us-deposit-withdrawal__faq-item.active .page-resources-dabet-us-deposit-withdrawal__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px !important;
}

.page-resources-dabet-us-deposit-withdrawal__faq-answer p {
  margin-bottom: 15px;
}

.page-resources-dabet-us-deposit-withdrawal__final-cta {
  text-align: center;
  background-color: #017439;
  color: #FFFFFF;
  padding: 80px 0;
}

.page-resources-dabet-us-deposit-withdrawal__final-cta .page-resources-dabet-us-deposit-withdrawal__section-title {
  color: #FFFFFF;
}

.page-resources-dabet-us-deposit-withdrawal__final-cta .page-resources-dabet-us-deposit-withdrawal__section-intro {
  color: #f0f0f0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-resources-dabet-us-deposit-withdrawal__hero-section {
    padding: 60px 20px 40px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-dabet-us-deposit-withdrawal__hero-title {
    font-size: 2em;
  }

  .page-resources-dabet-us-deposit-withdrawal__hero-description {
    font-size: 1em;
  }

  .page-resources-dabet-us-deposit-withdrawal__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-dabet-us-deposit-withdrawal__btn-primary,
  .page-resources-dabet-us-deposit-withdrawal__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-resources-dabet-us-deposit-withdrawal__section-title {
    font-size: 1.8em;
  }

  .page-resources-dabet-us-deposit-withdrawal__subsection-title {
    font-size: 1.5em;
  }

  .page-resources-dabet-us-deposit-withdrawal__step-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
  }

  .page-resources-dabet-us-deposit-withdrawal__image-wrapper img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-dabet-us-deposit-withdrawal__section,
  .page-resources-dabet-us-deposit-withdrawal__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-dabet-us-deposit-withdrawal__final-cta {
    padding: 60px 20px;
  }
}