.page-payment-methods-deposit-guide {
  color: #333333; /* Dark text for light body background */
}

.page-payment-methods-deposit-guide__hero-section {
  background-color: #007bff; /* Primary color background */
  color: #ffffff; /* White text on primary background */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-payment-methods-deposit-guide__hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods-deposit-guide__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-payment-methods-deposit-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-payment-methods-deposit-guide__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color for CTA */
  color: #333333; /* Dark text for auxiliary background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  border: none;
  cursor: pointer;
}

.page-payment-methods-deposit-guide__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-payment-methods-deposit-guide__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
}

.page-payment-methods-deposit-guide__cta-button--secondary:hover {
  background-color: #ffc107;
  color: #333333;
  transform: translateY(-2px);
}

.page-payment-methods-deposit-guide__hero-image {
  width: 100%;
  max-width: 1000px; /* Constrain hero image width */
  margin-top: 20px;
}

.page-payment-methods-deposit-guide__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-deposit-guide__section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-deposit-guide__overview-section {
  text-align: center;
}

.page-payment-methods-deposit-guide__section-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 20px;
  text-align: center;
}

.page-payment-methods-deposit-guide__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__method-cards-section {
  padding-top: 40px;
}

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

.page-payment-methods-deposit-guide__card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-payment-methods-deposit-guide__card:hover {
  transform: translateY(-5px);
}

.page-payment-methods-deposit-guide__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-deposit-guide__card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__card-list li {
  background-color: #e9f5ff;
  color: #007bff;
  padding: 8px 15px;
  margin-bottom: 8px;
  border-radius: 5px;
  font-size: 0.95em;
}

.page-payment-methods-deposit-guide__card-button {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-payment-methods-deposit-guide__card-button:hover {
  background-color: #0056b3;
}

.page-payment-methods-deposit-guide__step-by-step-section {
  background-color: #e9f5ff;
}

.page-payment-methods-deposit-guide__steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-payment-methods-deposit-guide__step {
  background-color: #ffffff;
  border: 1px solid #d0e9ff;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
  max-width: calc(33% - 40px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-deposit-guide__step-icon {
  background-color: #ffc107;
  color: #333333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-payment-methods-deposit-guide__step-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-payment-methods-deposit-guide__step-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
}

.page-payment-methods-deposit-guide__step-text a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__step-text a:hover {
  text-decoration: underline;
}

.page-payment-methods-deposit-guide__important-notes-section {
  background-color: #fdfdfd;
}

.page-payment-methods-deposit-guide__note-item {
  margin-bottom: 30px;
  border-left: 5px solid #007bff;
  padding-left: 20px;
  background-color: #f0f8ff;
  padding: 15px 20px;
  border-radius: 5px;
}

.page-payment-methods-deposit-guide__note-item:last-child {
  margin-bottom: 0;
}

.page-payment-methods-deposit-guide__note-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-payment-methods-deposit-guide__note-text {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-payment-methods-deposit-guide__note-text a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__note-text a:hover {
  text-decoration: underline;
}

.page-payment-methods-deposit-guide__faq-section {
  background-color: #f8f9fa;
}

.page-payment-methods-deposit-guide__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-payment-methods-deposit-guide__faq-question {
  font-size: 1.2em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-payment-methods-deposit-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #ffc107;
  transition: transform 0.3s ease;
}

.page-payment-methods-deposit-guide__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-payment-methods-deposit-guide__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-payment-methods-deposit-guide__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content */
  margin-top: 10px;
}

.page-payment-methods-deposit-guide__faq-answer a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__faq-answer a:hover {
  text-decoration: underline;
}

.page-payment-methods-deposit-guide__cta-bottom-section {
  text-align: center;
  background-color: #007bff;
  color: #ffffff;
  padding: 60px 20px;
}

.page-payment-methods-deposit-guide__cta-bottom-section .page-payment-methods-deposit-guide__section-title {
  color: #ffffff;
}

.page-payment-methods-deposit-guide__cta-bottom-section .page-payment-methods-deposit-guide__section-description {
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods-deposit-guide__main-title {
    font-size: 2.2em;
  }

  .page-payment-methods-deposit-guide__hero-description {
    font-size: 1.1em;
  }

  .page-payment-methods-deposit-guide__section-title {
    font-size: 1.8em;
  }

  .page-payment-methods-deposit-guide__steps-container {
    flex-direction: column;
    align-items: center;
  }

  .page-payment-methods-deposit-guide__step {
    flex: 1 1 90%;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-guide__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    padding-bottom: 40px;
  }

  .page-payment-methods-deposit-guide__hero-image img,
  .page-payment-methods-deposit-guide__card-image,
  .page-payment-methods-deposit-guide__note-item img,
  .page-payment-methods-deposit-guide__faq-item img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }

  .page-payment-methods-deposit-guide__main-title {
    font-size: 1.8em;
  }

  .page-payment-methods-deposit-guide__hero-description {
    font-size: 1em;
  }

  .page-payment-methods-deposit-guide__cta-button {
    width: calc(100% - 20px);
    margin: 10px auto;
    display: block;
  }

  .page-payment-methods-deposit-guide__section {
    margin: 20px auto;
    padding: 15px;
  }

  .page-payment-methods-deposit-guide__section-title {
    font-size: 1.5em;
  }

  .page-payment-methods-deposit-guide__card-grid {
    grid-template-columns: 1fr;
  }

  .page-payment-methods-deposit-guide__step {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-payment-methods-deposit-guide__note-title {
    font-size: 1.2em;
  }

  .page-payment-methods-deposit-guide__faq-question {
    font-size: 1.1em;
  }

  /* Ensure no content overflow for images */
  .page-payment-methods-deposit-guide img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure all images within the main content area meet the minimum size requirement */
.page-payment-methods-deposit-guide img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensures images fill their space without distortion */
}

/* Override specific element images if they are too small by default */
.page-payment-methods-deposit-guide__card-image {
  width: 100%; /* Ensure it takes full width of card */
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

/* Ensure images are not using filter properties */
.page-payment-methods-deposit-guide img {
  filter: none; /* Explicitly disable any potential filters */
}