.page-resources-safe-deposits-withdrawals {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#121212), so use light text */
  background-color: transparent; /* inherited from body */
}

.page-resources-safe-deposits-withdrawals__hero-section {
  position: relative;
  width: 100%;
  padding: 80px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #26A9E0, #1a7bbd); /* Using brand color */
}

.page-resources-safe-deposits-withdrawals__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-resources-safe-deposits-withdrawals__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

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

.page-resources-safe-deposits-withdrawals__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-safe-deposits-withdrawals__btn-primary,
.page-resources-safe-deposits-withdrawals__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-safe-deposits-withdrawals__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-safe-deposits-withdrawals__btn-primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

.page-resources-safe-deposits-withdrawals__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-safe-deposits-withdrawals__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-resources-safe-deposits-withdrawals__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-safe-deposits-withdrawals__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-safe-deposits-withdrawals__section {
  padding: 60px 20px;
}

.page-resources-safe-deposits-withdrawals__intro-section {
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
}

.page-resources-safe-deposits-withdrawals__deposit-guide {
  background-color: #121212; /* Dark background */
  color: #ffffff;
}

.page-resources-safe-deposits-withdrawals__withdrawal-guide {
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
}

.page-resources-safe-deposits-withdrawals__security-tips {
  background-color: #121212; /* Dark background */
  color: #ffffff;
}

.page-resources-safe-deposits-withdrawals__faq-section {
  background-color: #1a1a1a; /* Dark background */
  color: #ffffff;
}

.page-resources-safe-deposits-withdrawals__cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #26A9E0, #1a7bbd); /* Using brand color */
  color: #ffffff;
  text-align: center;
}

.page-resources-safe-deposits-withdrawals__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-safe-deposits-withdrawals__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-resources-safe-deposits-withdrawals__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-safe-deposits-withdrawals__features-grid,
.page-resources-safe-deposits-withdrawals__steps-grid,
.page-resources-safe-deposits-withdrawals__tip-list {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-resources-safe-deposits-withdrawals__features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-resources-safe-deposits-withdrawals__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-resources-safe-deposits-withdrawals__tip-list {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-resources-safe-deposits-withdrawals__feature-item,
.page-resources-safe-deposits-withdrawals__step-item,
.page-resources-safe-deposits-withdrawals__tip-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  color: #ffffff;
}

.page-resources-safe-deposits-withdrawals__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white background for cards on dark body */
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-resources-safe-deposits-withdrawals__feature-icon,
.page-resources-safe-deposits-withdrawals__tip-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-safe-deposits-withdrawals__feature-title,
.page-resources-safe-deposits-withdrawals__step-title,
.page-resources-safe-deposits-withdrawals__tip-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-safe-deposits-withdrawals__feature-description,
.page-resources-safe-deposits-withdrawals__step-item p,
.page-resources-safe-deposits-withdrawals__tip-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-resources-safe-deposits-withdrawals__step-item a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-resources-safe-deposits-withdrawals__step-item a:hover {
  color: #1a7bbd;
}

.page-resources-safe-deposits-withdrawals__cta-buttons {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-safe-deposits-withdrawals__faq-list {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-safe-deposits-withdrawals__faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.page-resources-safe-deposits-withdrawals__faq-item:last-child {
  border-bottom: none;
}

.page-resources-safe-deposits-withdrawals__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-resources-safe-deposits-withdrawals__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.page-resources-safe-deposits-withdrawals__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #ffffff;
}

.page-resources-safe-deposits-withdrawals__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-resources-safe-deposits-withdrawals__faq-item.active .page-resources-safe-deposits-withdrawals__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-safe-deposits-withdrawals__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-resources-safe-deposits-withdrawals__faq-item.active .page-resources-safe-deposits-withdrawals__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

.page-resources-safe-deposits-withdrawals__cta-banner .page-resources-safe-deposits-withdrawals__card {
  background: rgba(255, 255, 255, 0.15); /* Distinct card background */
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  margin: 0 auto;
  border: none;
}

.page-resources-safe-deposits-withdrawals__cta-title {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-safe-deposits-withdrawals__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Ensure all images are responsive and do not use filters */
.page-resources-safe-deposits-withdrawals img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: none; /* Absolutely no filters */
}

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

@media (max-width: 768px) {
  .page-resources-safe-deposits-withdrawals__hero-section {
    padding-top: var(--header-offset, 120px);
  }

  .page-resources-safe-deposits-withdrawals__hero-title {
    font-size: 2.2em;
  }

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

  .page-resources-safe-deposits-withdrawals__section-title {
    font-size: 2em;
  }

  .page-resources-safe-deposits-withdrawals__features-grid,
  .page-resources-safe-deposits-withdrawals__steps-grid,
  .page-resources-safe-deposits-withdrawals__tip-list {
    grid-template-columns: 1fr;
  }

  .page-resources-safe-deposits-withdrawals__btn-primary,
  .page-resources-safe-deposits-withdrawals__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-resources-safe-deposits-withdrawals__hero-buttons,
  .page-resources-safe-deposits-withdrawals__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-resources-safe-deposits-withdrawals__container {
    padding: 0 15px;
  }

  /* Mobile responsive for all images */
  .page-resources-safe-deposits-withdrawals img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-safe-deposits-withdrawals__section,
  .page-resources-safe-deposits-withdrawals__card,
  .page-resources-safe-deposits-withdrawals__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video specific rules for mobile, if any */
  .page-resources-safe-deposits-withdrawals video,
  .page-resources-safe-deposits-withdrawals__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-resources-safe-deposits-withdrawals__video-section,
  .page-resources-safe-deposits-withdrawals__video-container,
  .page-resources-safe-deposits-withdrawals__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-safe-deposits-withdrawals__cta-banner .page-resources-safe-deposits-withdrawals__card {
    padding: 30px 20px;
  }

  .page-resources-safe-deposits-withdrawals__cta-title {
    font-size: 1.8em;
  }

  .page-resources-safe-deposits-withdrawals__faq-question h3 {
    font-size: 1.1em;
  }

  .page-resources-safe-deposits-withdrawals__faq-question,
  .page-resources-safe-deposits-withdrawals__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-safe-deposits-withdrawals__hero-title {
    font-size: 1.8em;
  }

  .page-resources-safe-deposits-withdrawals__section-title {
    font-size: 1.8em;
  }

  .page-resources-safe-deposits-withdrawals__cta-title {
    font-size: 1.5em;
  }
}