.page-payment-methods-deposit-guide {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Body handles actual background */
}

/* Hero Section */
.page-payment-methods-deposit-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px; /* Base padding for desktop */
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

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

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

.page-payment-methods-deposit-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

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

.page-payment-methods-deposit-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  justify-content: center;
  gap: 20px;
}

/* General Sections */
.page-payment-methods-deposit-guide__section {
  padding: 80px 20px;
  background-color: transparent; /* Default transparent, sections can override */
}

.page-payment-methods-deposit-guide__dark-bg {
  background-color: #1a1a1a; /* Darker background for contrast on some sections */
  color: #ffffff;
}

.page-payment-methods-deposit-guide__light-bg {
  background-color: #f0f0f0; /* Light background for contrast on some sections */
  color: #333333;
}

.page-payment-methods-deposit-guide__container {
  width: 100%; /* Ensure width 100% for desktop flex/grid parent */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-payment-methods-deposit-guide__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-payment-methods-deposit-guide__text-block {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 30px;
  color: inherit; /* Inherit from parent section for contrast */
}

.page-payment-methods-deposit-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-deposit-guide__image--centered {
  margin-left: auto;
  margin-right: auto;
}

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

.page-payment-methods-deposit-guide__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #ffffff; /* Light text for card content */
  height: 100%; /* Ensure cards are same height */
}

.page-payment-methods-deposit-guide__card-title {
  font-size: 1.5em;
  color: #26A9E0; /* Brand color for card titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-payment-methods-deposit-guide__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  flex-shrink: 0; /* Prevent image from shrinking */
}

.page-payment-methods-deposit-guide__card-text {
  font-size: 1em;
  margin-bottom: 15px;
  flex-grow: 1; /* Allow text to grow */
}

.page-payment-methods-deposit-guide__card-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: auto; /* Push list to bottom */
}

.page-payment-methods-deposit-guide__card-list li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

.page-payment-methods-deposit-guide__card-list strong {
  color: #26A9E0; /* Brand color for emphasis */
}

/* Step-by-Step Guide */
.page-payment-methods-deposit-guide__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-payment-methods-deposit-guide__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for steps */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-deposit-guide__step-number {
  font-size: 2.5em;
  font-weight: 700;
  color: #26A9E0;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #26A9E0;
  border-radius: 50%;
  background-color: rgba(38, 169, 224, 0.1);
}

.page-payment-methods-deposit-guide__step-content {
  text-align: left;
}

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

/* Checklist / Important Notes */
.page-payment-methods-deposit-guide__checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-payment-methods-deposit-guide__checklist li {
  background-color: #ffffff; /* White background for light section checklist items */
  color: #333333; /* Dark text for light background */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.page-payment-methods-deposit-guide__checklist li::before {
  content: '✓';
  color: #26A9E0;
  font-weight: bold;
  font-size: 1.2em;
  flex-shrink: 0;
}

/* FAQ Section */
.page-payment-methods-deposit-guide__faq-list {
  margin-top: 40px;
}

.page-payment-methods-deposit-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly visible on dark body */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff; /* Light text */
}

.page-payment-methods-deposit-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 1.1em;
  color: #ffffff;
  list-style: none; /* For details/summary */
}

.page-payment-methods-deposit-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details */
}

.page-payment-methods-deposit-guide__faq-toggle {
  font-size: 1.5em;
  color: #26A9E0;
  margin-left: 10px;
}

.page-payment-methods-deposit-guide__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-payment-methods-deposit-guide__faq-answer a {
  color: #26A9E0;
  text-decoration: underline;
}

/* Conclusion Section */
.page-payment-methods-deposit-guide__conclusion-section {
  text-align: center;
  background-color: #26A9E0; /* Brand color background for conclusion */
  color: #ffffff;
  padding: 80px 20px;
}

/* Buttons */
.page-payment-methods-deposit-guide__btn-primary,
.page-payment-methods-deposit-guide__btn-secondary,
.page-payment-methods-deposit-guide__btn-tertiary,
.page-payment-methods-deposit-guide a[class*="button"],
.page-payment-methods-deposit-guide a[class*="btn"] {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button adapts to width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

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

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

.page-payment-methods-deposit-guide__btn-secondary {
  background: #26A9E0; /* Brand primary color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-payment-methods-deposit-guide__btn-secondary:hover {
  background: #1e87bb;
  border-color: #1e87bb;
  transform: translateY(-2px);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods-deposit-guide__hero-section {
    padding: 40px 15px;
    min-height: 400px;
  }

  .page-payment-methods-deposit-guide__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }

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

  .page-payment-methods-deposit-guide__section {
    padding: 60px 15px;
  }

  .page-payment-methods-deposit-guide__section-title {
    font-size: clamp(1.5em, 4vw, 2.2em);
  }

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

  .page-payment-methods-deposit-guide__card {
    padding: 25px;
  }

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

  .page-payment-methods-deposit-guide__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-payment-methods-deposit-guide__step-number {
    margin-bottom: 15px;
  }

  .page-payment-methods-deposit-guide__checklist li {
    padding: 12px 15px;
    font-size: 0.9em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-guide__hero-section {
    padding: 30px 15px;
    min-height: 350px;
    padding-top: 10px !important; /* body handles header offset */
  }

  .page-payment-methods-deposit-guide__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

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

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

  /* Responsive images */
  .page-payment-methods-deposit-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Responsive containers for images/videos/buttons */
  .page-payment-methods-deposit-guide__section,
  .page-payment-methods-deposit-guide__card,
  .page-payment-methods-deposit-guide__container,
  .page-payment-methods-deposit-guide__hero-content,
  .page-payment-methods-deposit-guide__cta-buttons,
  .page-payment-methods-deposit-guide__method-cards,
  .page-payment-methods-deposit-guide__step-by-step,
  .page-payment-methods-deposit-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent overflow */
  }
  
  /* Responsive buttons */
  .page-payment-methods-deposit-guide__btn-primary,
  .page-payment-methods-deposit-guide__btn-secondary,
  .page-payment-methods-deposit-guide__btn-tertiary,
  .page-payment-methods-deposit-guide a[class*="button"],
  .page-payment-methods-deposit-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-payment-methods-deposit-guide__section {
    padding: 40px 0; /* Padding handled by container for content width */
  }

  .page-payment-methods-deposit-guide__section-title {
    font-size: clamp(1.3em, 5vw, 2em);
    margin-bottom: 30px;
  }

  .page-payment-methods-deposit-guide__text-block {
    font-size: 0.9em;
  }

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

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

  .page-payment-methods-deposit-guide__step-number {
    font-size: 2em;
    width: 50px;
    height: 50px;
  }

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

  .page-payment-methods-deposit-guide__faq-question {
    font-size: 1em;
    padding: 15px;
  }

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

@media (max-width: 480px) {
  .page-payment-methods-deposit-guide__hero-section {
    min-height: 300px;
  }

  .page-payment-methods-deposit-guide__main-title {
    font-size: clamp(1.2em, 7vw, 2em);
  }

  .page-payment-methods-deposit-guide__description {
    font-size: 0.85em;
  }

  .page-payment-methods-deposit-guide__btn-primary,
  .page-payment-methods-deposit-guide__btn-secondary,
  .page-payment-methods-deposit-guide__btn-tertiary {
    padding: 12px 20px;
    font-size: 1em;
  }

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