/* style/resources-secure-deposits-withdrawals.css */
.page-resources-secure-deposits-withdrawals {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-secure-deposits-withdrawals__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  padding: 0;
}

.page-resources-secure-deposits-withdrawals__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6; /* Slightly dim the image to make text pop */
}

.page-resources-secure-deposits-withdrawals__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
}

.page-resources-secure-deposits-withdrawals__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-secure-deposits-withdrawals__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-resources-secure-deposits-withdrawals__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-secure-deposits-withdrawals__hero-button:hover {
  background-color: #e0a53a;
}

.page-resources-secure-deposits-withdrawals__content-area {
  max-width: 800px; /* Article content width */
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.page-resources-secure-deposits-withdrawals__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-secure-deposits-withdrawals__back-link:hover {
  color: #FCBC45;
}

.page-resources-secure-deposits-withdrawals__article-heading {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-secure-deposits-withdrawals__sub-heading {
  font-size: 1.6em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-secure-deposits-withdrawals__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-secure-deposits-withdrawals__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-resources-secure-deposits-withdrawals__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-secure-deposits-withdrawals__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-secure-deposits-withdrawals__list li {
  margin-bottom: 10px;
}

.page-resources-secure-deposits-withdrawals__cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-secure-deposits-withdrawals__cta-button:hover {
  background-color: #e0a53a;
}

.page-resources-secure-deposits-withdrawals__faq-item {
  background-color: #F8F8F8;
  border-left: 4px solid #FCBC45;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.page-resources-secure-deposits-withdrawals__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-secure-deposits-withdrawals__faq-answer {
  font-size: 1.1em;
  color: #333333;
}

.page-resources-secure-deposits-withdrawals__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-resources-secure-deposits-withdrawals__explore-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-secure-deposits-withdrawals__explore-button:hover {
  background-color: #333333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-secure-deposits-withdrawals__hero-title {
    font-size: 2.2em;
  }

  .page-resources-secure-deposits-withdrawals__hero-description {
    font-size: 1em;
  }

  .page-resources-secure-deposits-withdrawals__article-heading {
    font-size: 1.8em;
  }

  .page-resources-secure-deposits-withdrawals__sub-heading {
    font-size: 1.4em;
  }

  .page-resources-secure-deposits-withdrawals__article-paragraph,
  .page-resources-secure-deposits-withdrawals__list,
  .page-resources-secure-deposits-withdrawals__faq-answer {
    font-size: 1em;
  }

  .page-resources-secure-deposits-withdrawals__article-image {
    max-width: 100%;
    height: auto;
  }

  .page-resources-secure-deposits-withdrawals__content-area {
    padding: 20px 15px;
  }

  .page-resources-secure-deposits-withdrawals__button-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .page-resources-secure-deposits-withdrawals {
    overflow-x: hidden;
  }
  .page-resources-secure-deposits-withdrawals__hero-image,
  .page-resources-secure-deposits-withdrawals__article-image {
    max-width: 100%;
    height: auto;
  }
  /* Ensure content images are not smaller than 200px and responsive */
  .page-resources-secure-deposits-withdrawals__article-image {
    min-width: unset;
    min-height: unset;
    width: 100%;
    height: auto;
  }
}