/* style/how-to-start-deposit-guide.css */
.page-how-to-start-deposit-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light grey text for dark background */
  background-color: #1a1a2e; /* Dark background */
}

.page-how-to-start-deposit-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-how-to-start-deposit-guide__hero-section {
  background: linear-gradient(135deg, #0047AB, #001f50); /* Darker blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-how-to-start-deposit-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
}

.page-how-to-start-deposit-guide__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.page-how-to-start-deposit-guide__section {
  padding: 60px 0;
  background-color: #1a1a2e;
}

.page-how-to-start-deposit-guide__section:nth-of-type(even) {
  background-color: #0d1b2a;
}

.page-how-to-start-deposit-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #FFD700; /* Gold for section titles */
  font-weight: bold;
}

.page-how-to-start-deposit-guide__highlight {
  color: #FFD700;
}

.page-how-to-start-deposit-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-how-to-start-deposit-guide__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0047AB; /* Dark blue text */
}

.page-how-to-start-deposit-guide__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-how-to-start-deposit-guide__btn--secondary {
  background-color: #0047AB; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-how-to-start-deposit-guide__btn--secondary:hover {
  background-color: #003380;
  transform: translateY(-2px);
}

.page-how-to-start-deposit-guide__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
  margin-top: 40px;
}

.page-how-to-start-deposit-guide__feature-item {
  background-color: #0d1b2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-top: 3px solid #FFD700;
}

.page-how-to-start-deposit-guide__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-how-to-start-deposit-guide__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-how-to-start-deposit-guide__feature-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-how-to-start-deposit-guide__text-content {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #cccccc;
}

.page-how-to-start-deposit-guide__method-card {
  background-color: #0d1b2a;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border-left: 5px solid #0047AB;
}

.page-how-to-start-deposit-guide__method-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  border-bottom: 2px solid #0047AB;
  padding-bottom: 15px;
}

.page-how-to-start-deposit-guide__method-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-how-to-start-deposit-guide__method-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-how-to-start-deposit-guide__sub-title {
  font-size: 1.6em;
  color: #0047AB; /* Dark blue for sub-titles */
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-how-to-start-deposit-guide__steps {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-how-to-start-deposit-guide__steps li {
  background-color: #1a1a2e;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #cccccc;
}

.page-how-to-start-deposit-guide__step-number {
  font-weight: bold;
  color: #FFD700;
  font-size: 1.2em;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-how-to-start-deposit-guide__note {
  background-color: #003380;
  padding: 20px;
  border-radius: 8px;
  font-style: italic;
  color: #ffffff;
  margin-top: 30px;
  border-left: 5px solid #FFD700;
}

.page-how-to-start-deposit-guide__link-in-text {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-how-to-start-deposit-guide__link-in-text:hover {
  text-decoration: underline;
}

.page-how-to-start-deposit-guide__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-how-to-start-deposit-guide__tip-item {
  background-color: #0d1b2a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-right: 3px solid #0047AB;
}

.page-how-to-start-deposit-guide__tip-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-how-to-start-deposit-guide__tip-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-how-to-start-deposit-guide__cta-section {
  background: linear-gradient(135deg, #0047AB, #001f50);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-how-to-start-deposit-guide__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-how-to-start-deposit-guide__cta-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  font-weight: bold;
  color: #FFD700;
}

.page-how-to-start-deposit-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #ffffff;
}

.page-how-to-start-deposit-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-how-to-start-deposit-guide__hero-title {
    font-size: 2.5em;
  }

  .page-how-to-start-deposit-guide__section-title {
    font-size: 2em;
  }

  .page-how-to-start-deposit-guide__method-title {
    font-size: 1.8em;
  }

  .page-how-to-start-deposit-guide__sub-title {
    font-size: 1.4em;
  }

  .page-how-to-start-deposit-guide__steps li {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-how-to-start-deposit-guide__step-number {
    margin-bottom: 10px;
  }

  .page-how-to-start-deposit-guide__cta-title {
    font-size: 2em;
  }

  .page-how-to-start-deposit-guide__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-how-to-start-deposit-guide__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-how-to-start-deposit-guide__hero-title {
    font-size: 2em;
  }

  .page-how-to-start-deposit-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-how-to-start-deposit-guide__section-title {
    font-size: 1.8em;
  }

  .page-how-to-start-deposit-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-how-to-start-deposit-guide__feature-item, .page-how-to-start-deposit-guide__tip-item {
    padding: 20px;
  }

  .page-how-to-start-deposit-guide__method-card {
    padding: 25px;
  }

  .page-how-to-start-deposit-guide__cta-title {
    font-size: 1.8em;
  }

  .page-how-to-start-deposit-guide__cta-description {
    font-size: 1em;
  }
}