.page-payment-methods-deposit-options {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-payment-methods-deposit-options__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #26A9E0, #0056b3); /* Brand color gradient */
}

.page-payment-methods-deposit-options__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
}

.page-payment-methods-deposit-options__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-payment-methods-deposit-options__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-payment-methods-deposit-options__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-payment-methods-deposit-options__btn-primary,
.page-payment-methods-deposit-options__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods-deposit-options__btn-primary {
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid transparent;
}

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

.page-payment-methods-deposit-options__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-payment-methods-deposit-options__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-payment-methods-deposit-options__intro-section,
.page-payment-methods-deposit-options__methods-section,
.page-payment-methods-deposit-options__faq-section {
  background-color: #1a1a1a; /* Lighter dark background for content sections */
  color: #ffffff;
  padding: 40px 20px;
}

.page-payment-methods-deposit-options__guide-section,
.page-payment-methods-deposit-options__important-notes-section,
.page-payment-methods-deposit-options__contact-section {
  background-color: #121212; /* Darker background for contrast */
  color: #ffffff;
  padding: 40px 20px;
}

.page-payment-methods-deposit-options__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 15px;
}

.page-payment-methods-deposit-options__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
}

.page-payment-methods-deposit-options__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-payment-methods-deposit-options__text-block a {
  color: #26A9E0;
  text-decoration: none;
}

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

.page-payment-methods-deposit-options__step-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 800px;
}

.page-payment-methods-deposit-options__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #ffffff;
}

.page-payment-methods-deposit-options__step-item strong {
  color: #26A9E0;
  flex-shrink: 0;
}

.page-payment-methods-deposit-options__method-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
}

.page-payment-methods-deposit-options__method-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-payment-methods-deposit-options__method-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-payment-methods-deposit-options__method-text {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-payment-methods-deposit-options__method-details-list {
  list-style: disc;
  text-align: left;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-payment-methods-deposit-options__method-details-list li {
  margin-bottom: 10px;
}

.page-payment-methods-deposit-options__method-details-list strong {
  color: #ffffff;
}

.page-payment-methods-deposit-options__note-item {
  background-color: rgba(38, 169, 224, 0.15); /* Light blue tint */
  padding: 18px;
  margin-bottom: 15px;
  border-left: 5px solid #26A9E0;
  border-radius: 5px;
  color: #ffffff;
}

.page-payment-methods-deposit-options__note-item strong {
  color: #ffffff;
}

.page-payment-methods-deposit-options__note-item a {
  color: #26A9E0;
  text-decoration: none;
}

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

.page-payment-methods-deposit-options__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-payment-methods-deposit-options__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  color: #ffffff;
}

.page-payment-methods-deposit-options__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.page-payment-methods-deposit-options__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-payment-methods-deposit-options__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-payment-methods-deposit-options__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-payment-methods-deposit-options__faq-item[open] .page-payment-methods-deposit-options__faq-toggle {
  transform: rotate(45deg);
}

.page-payment-methods-deposit-options__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95em;
  color: #f0f0f0;
  text-align: justify;
}

.page-payment-methods-deposit-options__faq-answer p {
  margin-bottom: 0;
}

.page-payment-methods-deposit-options__contact-section .page-payment-methods-deposit-options__cta-buttons {
  margin-top: 30px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-payment-methods-deposit-options__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

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

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

  .page-payment-methods-deposit-options__btn-primary,
  .page-payment-methods-deposit-options__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-payment-methods-deposit-options__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Images responsive */
  .page-payment-methods-deposit-options img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-payment-methods-deposit-options__hero-image,
  .page-payment-methods-deposit-options__method-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-payment-methods-deposit-options__method-card {
    padding: 20px;
  }

  .page-payment-methods-deposit-options__step-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .page-payment-methods-deposit-options__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-payment-methods-deposit-options__faq-answer {
    padding: 10px 20px 15px;
  }
}

/* Ensure no image filter */
.page-payment-methods-deposit-options img {
  filter: none; /* Prohibit any filter effects */
}

/* Content area image size minimum */
.page-payment-methods-deposit-options__method-image {
  min-width: 200px;
  min-height: 200px;
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-options__method-image {
    min-width: unset;
    min-height: unset;
  }
}