/* style/payment-methods-deposit-guide.css */
.page-payment-methods-deposit-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-payment-methods-deposit-guide__dark-bg {
  background-color: #000080; /* Auxiliary color for dark sections */
  color: #ffffff;
}

.page-payment-methods-deposit-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-payment-methods-deposit-guide__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure spacing from fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(135deg, #000080 0%, #0a0a0a 100%);
}

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

.page-payment-methods-deposit-guide__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Primary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-payment-methods-deposit-guide__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-payment-methods-deposit-guide__btn-primary,
.page-payment-methods-deposit-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-payment-methods-deposit-guide__btn-primary {
  background-color: #FFD700;
  color: #000080;
  border: 2px solid #FFD700;
}

.page-payment-methods-deposit-guide__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-payment-methods-deposit-guide__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

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

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

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

.page-payment-methods-deposit-guide__why-deposit,
.page-payment-methods-deposit-guide__detailed-methods,
.page-payment-methods-deposit-guide__faq-section {
  padding: 80px 0;
}

.page-payment-methods-deposit-guide__deposit-overview,
.page-payment-methods-deposit-guide__tips-section,
.page-payment-methods-deposit-guide__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #000080 100%);
}

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

.page-payment-methods-deposit-guide__card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__card {
  background-color: #f8f8f8;
  color: #333333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-deposit-guide__feature-title,
.page-payment-methods-deposit-guide__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-payment-methods-deposit-guide__method-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__method-item {
  background-color: #f0f0f0;
  color: #333333;
}

.page-payment-methods-deposit-guide__method-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__method-intro {
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-payment-methods-deposit-guide__method-steps {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.05em;
  line-height: 1.8;
}

.page-payment-methods-deposit-guide__method-steps li strong {
  color: #FFD700;
}

.page-payment-methods-deposit-guide__method-image,
.page-payment-methods-deposit-guide__tips-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-payment-methods-deposit-guide__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 900px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-payment-methods-deposit-guide__tips-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  padding-left: 45px;
  text-align: left;
}

.page-payment-methods-deposit-guide__tips-list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

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

.page-payment-methods-deposit-guide__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
}

.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__faq-item {
  border: 1px solid #e0e0e0;
  background-color: #f8f8f8;
}

.page-payment-methods-deposit-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__faq-question {
  color: #000080;
}

.page-payment-methods-deposit-guide__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__faq-question:hover {
  background-color: #e6e6e6;
}

.page-payment-methods-deposit-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-payment-methods-deposit-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  text-align: left;
}

.page-payment-methods-deposit-guide__light-bg .page-payment-methods-deposit-guide__faq-answer {
  color: #333333;
}

.page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px 25px;
}

.page-payment-methods-deposit-guide__cta-section {
  text-align: center;
  padding: 100px 0;
}

.page-payment-methods-deposit-guide__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-payment-methods-deposit-guide__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

/* Responsive styles */
@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;
  }
  .page-payment-methods-deposit-guide__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-payment-methods-deposit-guide__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .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__btn-primary,
  .page-payment-methods-deposit-guide__btn-secondary {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-payment-methods-deposit-guide__cta-buttons {
    flex-direction: column;
    gap: 0;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-payment-methods-deposit-guide__why-deposit,
  .page-payment-methods-deposit-guide__deposit-overview,
  .page-payment-methods-deposit-guide__detailed-methods,
  .page-payment-methods-deposit-guide__tips-section,
  .page-payment-methods-deposit-guide__faq-section,
  .page-payment-methods-deposit-guide__cta-section {
    padding: 40px 0;
  }

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

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

  .page-payment-methods-deposit-guide__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-payment-methods-deposit-guide__feature-grid,
  .page-payment-methods-deposit-guide__step-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .page-payment-methods-deposit-guide__method-title {
    font-size: 1.6em;
  }

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

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

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

  .page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-answer {
    padding: 10px 20px 20px;
  }

  .page-payment-methods-deposit-guide__cta-title {
    font-size: 2em;
  }
  
  /* Mobile image responsiveness */
  .page-payment-methods-deposit-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-payment-methods-deposit-guide__section,
  .page-payment-methods-deposit-guide__card,
  .page-payment-methods-deposit-guide__container,
  .page-payment-methods-deposit-guide__method-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; */ /* Handled by container padding */
    /* padding-right: 15px; */ /* Handled by container padding */
    overflow: hidden !important;
  }
}