.page-payment-methods-deposit-guide {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.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-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  padding-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

.page-payment-methods-deposit-guide__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-payment-methods-deposit-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-payment-methods-deposit-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Overlay for text readability */
}

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

.page-payment-methods-deposit-guide__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-payment-methods-deposit-guide__why-deposit-section,
.page-payment-methods-deposit-guide__step-by-step-section,
.page-payment-methods-deposit-guide__payment-methods-section,
.page-payment-methods-deposit-guide__limits-fees-section,
.page-payment-methods-deposit-guide__faq-section,
.page-payment-methods-deposit-guide__responsible-gaming-section,
.page-payment-methods-deposit-guide__cta-section,
.page-payment-methods-deposit-guide__footer-links-section {
  padding: 40px 0;
}

.page-payment-methods-deposit-guide__why-deposit-section {
  background-color: #F8F8F8;
}

.page-payment-methods-deposit-guide__feature-grid {
  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: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-payment-methods-deposit-guide__feature-icon {
  width: 200px; /* Min size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

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

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

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

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

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

.page-payment-methods-deposit-guide__guide-image-wrapper {
  margin-top: 60px;
  text-align: center;
}

.page-payment-methods-deposit-guide__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-payment-methods-deposit-guide__payment-methods-section {
  background-color: #F8F8F8;
}

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

.page-payment-methods-deposit-guide__method-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-payment-methods-deposit-guide__method-icon {
  width: 200px; /* Min size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-payment-methods-deposit-guide__limits-fees-section {
  background-color: #FFFFFF;
}

.page-payment-methods-deposit-guide__table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-payment-methods-deposit-guide__limits-table {
  width: 100%;
  border-collapse: collapse;
  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 {
  padding: 15px;
  border: 1px solid #EEEEEE;
  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: #F8F8F8;
}

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

.page-payment-methods-deposit-guide__disclaimer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
  color: #777777;
}

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

.page-payment-methods-deposit-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-payment-methods-deposit-guide__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.page-payment-methods-deposit-guide__faq-question {
  padding: 20px;
  font-size: 1.2em;
  color: #000000;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.page-payment-methods-deposit-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

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

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

.page-payment-methods-deposit-guide__faq-image-wrapper {
  margin-top: 60px;
  text-align: center;
}

.page-payment-methods-deposit-guide__faq-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-payment-methods-deposit-guide__responsible-gaming-section {
  background-color: #FFFFFF;
  padding-bottom: 60px;
}

.page-payment-methods-deposit-guide__responsible-gaming-text {
  text-align: center;
  max-width: 800px;
  margin: 20px auto 0 auto;
  color: #555555;
}

.page-payment-methods-deposit-guide__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-payment-methods-deposit-guide__link:hover {
  color: #E0A030;
  text-decoration: underline;
}

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

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

.page-payment-methods-deposit-guide__cta-section .page-payment-methods-deposit-guide__section-intro {
  color: #E0E0E0;
}

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

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

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

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

.page-payment-methods-deposit-guide__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-payment-methods-deposit-guide__footer-links-section {
  background-color: #F8F8F8;
  padding-bottom: 60px;
}

.page-payment-methods-deposit-guide__footer-links-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}

.page-payment-methods-deposit-guide__footer-links-list li a {
  font-size: 1.05em;
}

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

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

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

  .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,
  .page-payment-methods-deposit-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

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

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

  .page-payment-methods-deposit-guide__section-intro {
    font-size: 0.95em;
  }

  .page-payment-methods-deposit-guide__feature-grid,
  .page-payment-methods-deposit-guide__steps-grid,
  .page-payment-methods-deposit-guide__methods-grid {
    grid-template-columns: 1fr;
  }

  .page-payment-methods-deposit-guide__feature-icon,
  .page-payment-methods-deposit-guide__method-icon,
  .page-payment-methods-deposit-guide__guide-image,
  .page-payment-methods-deposit-guide__faq-image {
    max-width: 100%;
    height: auto;
  }

  .page-payment-methods-deposit-guide__limits-table {
    min-width: unset;
  }

  .page-payment-methods-deposit-guide__limits-table th,
  .page-payment-methods-deposit-guide__limits-table td {
    padding: 10px;
    font-size: 0.9em;
  }

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

  .page-payment-methods-deposit-guide__faq-answer {
    font-size: 0.9em;
  }

  .page-payment-methods-deposit-guide__footer-links-list {
    flex-direction: column;
    gap: 10px;
  }
}

@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.5em;
  }

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

  .page-payment-methods-deposit-guide__container {
    padding: 0 15px;
  }
}

/* Ensure all images within the content area are responsive and not smaller than 200px */
.page-payment-methods-deposit-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Ensures images fill their space without distortion */
}

/* Specific override for hero image to allow smaller display in wrapper if needed, but still request large */
.page-payment-methods-deposit-guide__hero-image {
  min-width: unset; /* Allow hero image to be smaller if wrapper dictates */
  min-height: unset;
}

/* Ensure no filter is applied to images */
.page-payment-methods-deposit-guide img {
  filter: none; /* Explicitly remove any potential filter */
}

/* All images within content area must have min-width/height 200px */
.page-payment-methods-deposit-guide__feature-icon,
.page-payment-methods-deposit-guide__method-icon,
.page-payment-methods-deposit-guide__guide-image,
.page-payment-methods-deposit-guide__faq-image {
  min-width: 200px;
  min-height: 200px;
}

/* Mobile specific image handling - must use max-width: 100%; height: auto; */
@media (max-width: 768px) {
  .page-payment-methods-deposit-guide img {
    max-width: 100% !important;
    height: auto !important;
  }
}