.page-payment-methods-deposit-guide {
  --primary-color: #FFD700;
  --secondary-color: #1A1A1A;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #1A1A1A;
  --bg-light: #f5f5f5;
  --border-color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.page-payment-methods-deposit-guide__section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-payment-methods-deposit-guide__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-payment-methods-deposit-guide__hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding: 60px 20px;
  background-color: var(--bg-dark);
}

.page-payment-methods-deposit-guide__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-payment-methods-deposit-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 8px;
}

.page-payment-methods-deposit-guide__main-title {
  font-size: 2.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-payment-methods-deposit-guide__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-payment-methods-deposit-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-payment-methods-deposit-guide__cta-button:hover {
  background: #e0c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-deposit-guide__section-title {
  font-size: 2.2em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__text-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__text-content a:hover {
  text-decoration: underline;
}

.page-payment-methods-deposit-guide__advantages-list,
.page-payment-methods-deposit-guide__tips-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-payment-methods-deposit-guide__advantages-list li,
.page-payment-methods-deposit-guide__tips-list li {
  background-color: #fff;
  padding: 20px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1em;
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__advantages-list li strong {
  color: var(--secondary-color);
}

.page-payment-methods-deposit-guide__image-content {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-payment-methods-deposit-guide__methods .page-payment-methods-deposit-guide__method-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  padding: 30px;
}

.page-payment-methods-deposit-guide__method-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

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

.page-payment-methods-deposit-guide__method-description {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__method-subtitle {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-payment-methods-deposit-guide__steps-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  font-size: 1.0em;
  color: var(--text-dark);
}

.page-payment-methods-deposit-guide__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-payment-methods-deposit-guide__steps-list li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-payment-methods-deposit-guide__steps-list li a:hover {
  text-decoration: underline;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--secondary-color);
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background: #f9f9f9;
  color: var(--text-dark);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 20px;
  border-top: 1px solid var(--border-color);
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
}

.page-payment-methods-deposit-guide__cta-bottom {
  background-color: var(--secondary-color);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.page-payment-methods-deposit-guide__cta-bottom .page-payment-methods-deposit-guide__section-title {
  color: var(--primary-color);
}

.page-payment-methods-deposit-guide__cta-bottom .page-payment-methods-deposit-guide__text-content {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-payment-methods-deposit-guide__cta-button--primary {
  background: var(--primary-color);
  color: var(--secondary-color);
}

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

.page-payment-methods-deposit-guide__cta-button--secondary {
  background: #555555;
  color: var(--text-light);
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-payment-methods-deposit-guide__main-title {
    font-size: 2.2em;
  }
  .page-payment-methods-deposit-guide__section-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-guide__hero-description {
    font-size: 1.1em;
  }
  .page-payment-methods-deposit-guide__cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-payment-methods-deposit-guide__section {
    padding: 40px 0;
  }
  .page-payment-methods-deposit-guide__hero {
    padding: 40px 15px;
  }
  .page-payment-methods-deposit-guide__hero-content {
    padding: 20px;
  }
  .page-payment-methods-deposit-guide__main-title {
    font-size: 1.8em;
  }
  .page-payment-methods-deposit-guide__section-title {
    font-size: 1.6em;
  }
  .page-payment-methods-deposit-guide__text-content,
  .page-payment-methods-deposit-guide__method-description,
  .page-payment-methods-deposit-guide__steps-list li,
  .faq-answer p {
    font-size: 0.95em;
  }
  .page-payment-methods-deposit-guide__method-title {
    font-size: 1.5em;
  }
  .page-payment-methods-deposit-guide__method-subtitle {
    font-size: 1.2em;
  }
  .page-payment-methods-deposit-guide__advantages-list,
  .page-payment-methods-deposit-guide__tips-list {
    grid-template-columns: 1fr;
  }
  .page-payment-methods-deposit-guide__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .faq-question h3 {
    font-size: 1em;
    padding-right: 10px;
  }
  .faq-question {
    padding: 12px 15px;
  }
  .faq-toggle {
    font-size: 20px;
  }
}