/* style/getting-started-first-deposit-guide.css */
.page-getting-started-first-deposit-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-getting-started-first-deposit-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-getting-started-first-deposit-guide__hero-section {
  background: linear-gradient(135deg, #0A2239, #3A4E6B);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-getting-started-first-deposit-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B400; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-getting-started-first-deposit-guide__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-getting-started-first-deposit-guide__hero-btn {
  display: inline-block;
  background-color: #E0B400; /* Accent color for button */
  color: #0A2239;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-getting-started-first-deposit-guide__hero-btn:hover {
  background-color: #f0c800;
  transform: translateY(-3px);
}

.page-getting-started-first-deposit-guide__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-getting-started-first-deposit-guide__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-getting-started-first-deposit-guide__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-getting-started-first-deposit-guide__section-title {
  font-size: 2.5em;
  color: #0A2239;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-getting-started-first-deposit-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E0B400;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-getting-started-first-deposit-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-getting-started-first-deposit-guide__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-getting-started-first-deposit-guide__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333;
}

.page-getting-started-first-deposit-guide__list li::before {
  content: '✓';
  color: #E0B400;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-getting-started-first-deposit-guide__list-highlight {
  color: #0A2239;
}

.page-getting-started-first-deposit-guide__step-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-getting-started-first-deposit-guide__step-item:hover {
  transform: translateY(-5px);
}

.page-getting-started-first-deposit-guide__step-title {
  font-size: 1.8em;
  color: #0A2239;
  margin-bottom: 15px;
  border-bottom: 2px solid #E0B400;
  padding-bottom: 10px;
}

.page-getting-started-first-deposit-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-getting-started-first-deposit-guide__link {
  color: #E0B400;
  text-decoration: none;
  font-weight: bold;
}

.page-getting-started-first-deposit-guide__link:hover {
  text-decoration: underline;
}

.page-getting-started-first-deposit-guide__faq-list {
  margin-top: 30px;
}

.page-getting-started-first-deposit-guide__faq-question {
  font-size: 1.3em;
  color: #0A2239;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}

.page-getting-started-first-deposit-guide__faq-question::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #E0B400;
  font-size: 1.5em;
  line-height: 1;
  top: -2px;
}

.page-getting-started-first-deposit-guide__faq-answer {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  padding-left: 30px;
}

.page-getting-started-first-deposit-guide__cta-section {
  background: #0A2239;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-getting-started-first-deposit-guide__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-getting-started-first-deposit-guide__cta-title {
  font-size: 2.8em;
  color: #E0B400;
  margin-bottom: 25px;
}

.page-getting-started-first-deposit-guide__cta-btn {
  display: inline-block;
  background-color: #E0B400;
  color: #0A2239;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.page-getting-started-first-deposit-guide__cta-btn:hover {
  background-color: #f0c800;
  transform: translateY(-5px);
}

.page-getting-started-first-deposit-guide__cta-image {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .page-getting-started-first-deposit-guide__hero-title {
    font-size: 2.5em;
  }

  .page-getting-started-first-deposit-guide__hero-subtitle,
  .page-getting-started-first-deposit-guide__paragraph,
  .page-getting-started-first-deposit-guide__list li,
  .page-getting-started-first-deposit-guide__faq-answer {
    font-size: 1em;
  }

  .page-getting-started-first-deposit-guide__section-title {
    font-size: 2em;
  }

  .page-getting-started-first-deposit-guide__step-title {
    font-size: 1.5em;
  }

  .page-getting-started-first-deposit-guide__cta-title {
    font-size: 2.2em;
  }

  .page-getting-started-first-deposit-guide__hero-btn,
  .page-getting-started-first-deposit-guide__cta-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-getting-started-first-deposit-guide__hero-title {
    font-size: 2em;
  }

  .page-getting-started-first-deposit-guide__section-title {
    font-size: 1.8em;
  }

  .page-getting-started-first-deposit-guide__cta-title {
    font-size: 1.8em;
  }

  .page-getting-started-first-deposit-guide__container {
    padding: 0 15px;
  }
}