.page-payment-methods-deposit-guide {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-payment-methods-deposit-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-payment-methods-deposit-guide__hero-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-payment-methods-deposit-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3; /* Slightly transparent to allow text readability */
}

.page-payment-methods-deposit-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-payment-methods-deposit-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-payment-methods-deposit-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Highlight color for title */
}

.page-payment-methods-deposit-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-deposit-guide__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-payment-methods-deposit-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-payment-methods-deposit-guide__button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-payment-methods-deposit-guide__button--register:hover {
  background-color: #e0a53a;
  transform: translateY(-2px);
}

.page-payment-methods-deposit-guide__button--deposit {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-payment-methods-deposit-guide__introduction-section,
.page-payment-methods-deposit-guide__methods-section,
.page-payment-methods-deposit-guide__steps-section,
.page-payment-methods-deposit-guide__limits-section,
.page-payment-methods-deposit-guide__security-section,
.page-payment-methods-deposit-guide__faq-section,
.page-payment-methods-deposit-guide__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-payment-methods-deposit-guide__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: justify;
}

.page-payment-methods-deposit-guide__note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
}

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

.page-payment-methods-deposit-guide__card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-payment-methods-deposit-guide__card-image {
  width: 100%; /* Ensure images are not smaller than 200px */
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-payment-methods-deposit-guide__card-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  text-align: justify;
}

.page-payment-methods-deposit-guide__card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

.page-payment-methods-deposit-guide__card-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FCBC45" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #333333;
}

.page-payment-methods-deposit-guide__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-payment-methods-deposit-guide__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
}

.page-payment-methods-deposit-guide__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FCBC45;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-payment-methods-deposit-guide__step-description {
  color: #555555;
  font-size: 1em;
}

.page-payment-methods-deposit-guide__step-description a {
  color: #FCBC45;
  text-decoration: none;
}

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

.page-payment-methods-deposit-guide__table-responsive {
  overflow-x: auto;
  margin-top: 40px;
}

.page-payment-methods-deposit-guide__limits-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  min-width: 600px; /* Ensure table is readable on smaller screens */
}

.page-payment-methods-deposit-guide__limits-table th,
.page-payment-methods-deposit-guide__limits-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
}

.page-payment-methods-deposit-guide__limits-table th {
  background-color: #000000;
  color: #FFFFFF;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__limits-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.page-payment-methods-deposit-guide__limits-table tr:hover {
  background-color: #ddd;
}

.page-payment-methods-deposit-guide__security-section {
  background-color: #f2f2f2;
}

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

.page-payment-methods-deposit-guide__feature-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-payment-methods-deposit-guide__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure icons are not smaller than 200px */
  min-height: 200px;
  object-fit: contain;
}

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

.page-payment-methods-deposit-guide__feature-description {
  font-size: 0.95em;
  color: #555555;
}

.page-payment-methods-deposit-guide__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-payment-methods-deposit-guide__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.page-payment-methods-deposit-guide__accordion-header {
  background-color: #000000;
  color: #FFFFFF;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-payment-methods-deposit-guide__accordion-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.page-payment-methods-deposit-guide__accordion-header.active::after {
  content: '-';
}

.page-payment-methods-deposit-guide__accordion-content {
  padding: 0 25px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-payment-methods-deposit-guide__accordion-content p {
  margin: 15px 0;
  color: #555555;
}

.page-payment-methods-deposit-guide__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

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

.page-payment-methods-deposit-guide__button--promo {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-payment-methods-deposit-guide__button--promo:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

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

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

@media (max-width: 768px) {
  .page-payment-methods-deposit-guide__hero-title {
    font-size: 2.2em;
  }

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

  .page-payment-methods-deposit-guide__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-payment-methods-deposit-guide__button {
    width: 100%;
    max-width: 300px;
  }

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

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

  .page-payment-methods-deposit-guide__steps-list li {
    padding-left: 50px;
  }

  .page-payment-methods-deposit-guide__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }

  .page-payment-methods-deposit-guide__step-title {
    font-size: 1.3em;
  }

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

  .page-payment-methods-deposit-guide__limits-table {
    min-width: 100%; /* Allow table to shrink but not overflow */
  }

  .page-payment-methods-deposit-guide__accordion-header {
    font-size: 1em;
  }
  
  /* Ensure all content area images are responsive and do not cause overflow */
  .page-payment-methods-deposit-guide img {
    max-width: 100%;
    height: auto;
    object-fit: cover; /* Maintain aspect ratio */
    min-width: 200px; /* Enforce minimum size even on mobile */
    min-height: 200px;
  }
  .page-payment-methods-deposit-guide__card-image {
    height: 200px; /* Adjust height for mobile cards */
  }
}

@media (max-width: 480px) {
  .page-payment-methods-deposit-guide__hero-title {
    font-size: 1.8em;
  }

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

  .page-payment-methods-deposit-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-payment-methods-deposit-guide__cta-buttons {
    flex-direction: column;
  }
}