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

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

.page-payment-methods-deposit-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

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

.page-payment-methods-deposit-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background-color: rgba(0, 0, 128, 0.7); /* Semi-transparent dark blue overlay */
  padding: 40px;
  border-radius: 10px;
}

.page-payment-methods-deposit-guide__main-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-payment-methods-deposit-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-payment-methods-deposit-guide__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #000066;
}

.page-payment-methods-deposit-guide__introduction-section,
.page-payment-methods-deposit-guide__steps-section,
.page-payment-methods-deposit-guide__payment-options-section,
.page-payment-methods-deposit-guide__tips-faq-section,
.page-payment-methods-deposit-guide__security-assurance-section,
.page-payment-methods-deposit-guide__cta-bottom-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-payment-methods-deposit-guide__section-title {
  font-size: 2.2em;
  color: #000080; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-payment-methods-deposit-guide__step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-deposit-guide__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-payment-methods-deposit-guide__step-icon img {
  width: 200px; /* Min size for content images */
  
  object-fit: contain;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__step-title {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__step-text {
  font-size: 1em;
  text-align: center;
  color: #666666;
}

.page-payment-methods-deposit-guide__step-text a {
  color: #000080;
  font-weight: bold;
  text-decoration: underline;
}

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

.page-payment-methods-deposit-guide__payment-card {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-deposit-guide__payment-logo {
  width: 300px; /* Example size, ensuring min 200px */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__payment-name {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-payment-methods-deposit-guide__note {
  text-align: center;
  margin-top: 40px;
  font-size: 1em;
  color: #555555;
}

.page-payment-methods-deposit-guide__note a {
  color: #000080;
  font-weight: bold;
  text-decoration: underline;
}

.page-payment-methods-deposit-guide__tips-list,
.page-payment-methods-deposit-guide__faq-accordion {
  margin-top: 40px;
}

.page-payment-methods-deposit-guide__sub-title {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 25px;
  text-align: center;
}

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

.page-payment-methods-deposit-guide__unordered-list li {
  background-color: #f0f8ff; /* Light blue background for list items */
  border-left: 5px solid #000080;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #333333;
  font-size: 1em;
}

.page-payment-methods-deposit-guide__unordered-list li strong {
  color: #000080;
}

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

.page-payment-methods-deposit-guide__faq-question {
  background-color: #000080; /* Dark blue for FAQ question */
  color: #FFD700; /* Gold text for FAQ question */
  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;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-payment-methods-deposit-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  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 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__faq-answer p {
  margin: 15px 0;
  color: #555555;
}

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

.page-payment-methods-deposit-guide__security-assurance-section {
  background-color: #f0f0f0;
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods-deposit-guide__security-image {
  width: 800px; /* Example size, ensuring min 200px */
  height: 533px;
  object-fit: contain;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-deposit-guide__cta-bottom-section {
  background-color: #000080; /* Dark blue background for bottom CTA */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-payment-methods-deposit-guide__cta-bottom-section .page-payment-methods-deposit-guide__section-title {
  color: #FFD700; /* Gold title on dark blue background */
}

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

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

.page-payment-methods-deposit-guide__cta-button--primary {
  background-color: #FFD700;
  color: #000080;
}

.page-payment-methods-deposit-guide__cta-button--primary:hover {
  background-color: #e6c200;
  color: #000066;
}

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

.page-payment-methods-deposit-guide__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #000080;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-payment-methods-deposit-guide__main-title {
    font-size: 2.4em;
  }
  .page-payment-methods-deposit-guide__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-guide__hero-content {
    padding: 30px;
  }
  .page-payment-methods-deposit-guide__security-image {
    width: 600px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-guide {
    padding-top: var(--header-offset, 80px);
  }
  .page-payment-methods-deposit-guide__main-title {
    font-size: 2em;
  }
  .page-payment-methods-deposit-guide__hero-description {
    font-size: 1em;
  }
  .page-payment-methods-deposit-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-payment-methods-deposit-guide__section-title {
    font-size: 1.6em;
  }
  .page-payment-methods-deposit-guide__section-description {
    font-size: 0.95em;
  }
  .page-payment-methods-deposit-guide__step-card {
    padding: 20px;
  }
  .page-payment-methods-deposit-guide__step-icon img,
  .page-payment-methods-deposit-guide__payment-logo,
  .page-payment-methods-deposit-guide__security-image {
    max-width: 100%;
    height: auto;
  }
  .page-payment-methods-deposit-guide__payment-grid {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-deposit-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-payment-methods-deposit-guide__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-payment-methods-deposit-guide__unordered-list li {
    font-size: 0.95em;
  }
  /* Ensure content area images do not cause horizontal scroll */
  .page-payment-methods-deposit-guide img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-payment-methods-deposit-guide__hero-content {
    padding: 20px;
  }
  .page-payment-methods-deposit-guide__main-title {
    font-size: 1.6em;
  }
  .page-payment-methods-deposit-guide__section-title {
    font-size: 1.4em;
  }
  .page-payment-methods-deposit-guide__step-title {
    font-size: 1.4em;
  }
  .page-payment-methods-deposit-guide__payment-name {
    font-size: 1.2em;
  }
}