.page-registration-download-first-deposit-guide {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A2E47; /* Primary dark blue background */
}

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

.page-registration-download-first-deposit-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-registration-download-first-deposit-guide__section:nth-of-type(even) {
  background-color: #2A405F; /* Slightly lighter dark blue for alternating sections */
}

.page-registration-download-first-deposit-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-registration-download-first-deposit-guide__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Hero Section */
.page-registration-download-first-deposit-guide__hero-section {
  background: linear-gradient(135deg, #1A2E47 0%, #0D1B2A 100%); /* Darker gradient for hero */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-registration-download-first-deposit-guide__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-registration-download-first-deposit-guide__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-registration-download-first-deposit-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2E47; /* Dark blue text on gold */
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-registration-download-first-deposit-guide__cta-button:hover {
  background-color: #e5c100; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-registration-download-first-deposit-guide__hero-image {
  max-width: 80%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Why Deposit Section */
.page-registration-download-first-deposit-guide__why-deposit {
  background-color: #2A405F;
}

.page-registration-download-first-deposit-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-registration-download-first-deposit-guide__feature-item {
  background-color: #1A2E47;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-registration-download-first-deposit-guide__feature-item:hover {
  transform: translateY(-10px);
}

.page-registration-download-first-deposit-guide__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-registration-download-first-deposit-guide__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-registration-download-first-deposit-guide__feature-description {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.5;
}

/* Deposit Steps Section */
.page-registration-download-first-deposit-guide__deposit-steps {
  background-color: #1A2E47;
}

.page-registration-download-first-deposit-guide__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.page-registration-download-first-deposit-guide__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #2A405F;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-registration-download-first-deposit-guide__step-item:nth-child(even) {
  flex-direction: column-reverse; /* Alternate layout for visual interest */
}

.page-registration-download-first-deposit-guide__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #1A2E47;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-registration-download-first-deposit-guide__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-registration-download-first-deposit-guide__step-item p {
  font-size: 1.1em;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 700px;
}

.page-registration-download-first-deposit-guide__step-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
}

.page-registration-download-first-deposit-guide__step-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2E47;
  padding: 10px 25px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 15px;
}

.page-registration-download-first-deposit-guide__step-cta:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

/* Payment Methods Section */
.page-registration-download-first-deposit-guide__payment-methods {
  background-color: #2A405F;
}

.page-registration-download-first-deposit-guide__method-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-registration-download-first-deposit-guide__method-list li {
  background-color: #1A2E47;
  padding: 20px 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  min-width: 280px;
  justify-content: center;
}

.page-registration-download-first-deposit-guide__method-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.page-registration-download-first-deposit-guide__note {
  font-style: italic;
  color: #B0B0B0;
  margin-top: 30px;
  font-size: 0.95em;
}

/* Important Notes Section */
.page-registration-download-first-deposit-guide__important-notes {
  background-color: #1A2E47;
}

.page-registration-download-first-deposit-guide__notes-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-registration-download-first-deposit-guide__notes-list li {
  background-color: #2A405F;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-registration-download-first-deposit-guide__notes-list li:hover {
  background-color: #3A557A;
}

.page-registration-download-first-deposit-guide__notes-list li p {
  color: #E0E0E0;
  line-height: 1.6;
  font-size: 1.05em;
}

.page-registration-download-first-deposit-guide__notes-list li strong {
  color: #FFD700;
}

.page-registration-download-first-deposit-guide__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  margin-top: 40px;
}

.page-registration-download-first-deposit-guide__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E47;
  transform: translateY(-3px);
}

/* FAQ Section */
.page-registration-download-first-deposit-guide__faq {
  background-color: #2A405F;
}

.page-registration-download-first-deposit-guide__faq-item {
  background-color: #1A2E47;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-registration-download-first-deposit-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: color 0.3s ease;
}

.page-registration-download-first-deposit-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-registration-download-first-deposit-guide__faq-item.active .page-registration-download-first-deposit-guide__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-registration-download-first-deposit-guide__faq-answer {
  padding: 0 30px 20px;
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
  display: none;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.page-registration-download-first-deposit-guide__faq-item.active .page-registration-download-first-deposit-guide__faq-answer {
  display: block;
  max-height: 500px; /* Arbitrary large value for smooth transition */
  opacity: 1;
}

/* Final CTA Section */
.page-registration-download-first-deposit-guide__final-cta {
  background-color: #1A2E47;
  padding-bottom: 80px;
}

.page-registration-download-first-deposit-guide__cta-button--primary {
  background-color: #FFD700;
  color: #1A2E47;
  padding: 18px 35px;
  font-size: 1.3em;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-registration-download-first-deposit-guide__cta-button--primary:hover {
  background-color: #e5c100;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-registration-download-first-deposit-guide__hero-title {
    font-size: 2.8em;
  }
  .page-registration-download-first-deposit-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-registration-download-first-deposit-guide__section-title {
    font-size: 2em;
  }
  .page-registration-download-first-deposit-guide__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .page-registration-download-first-deposit-guide__step-item {
    padding: 30px;
  }
  .page-registration-download-first-deposit-guide__step-title {
    font-size: 1.6em;
  }
  .page-registration-download-first-deposit-guide__method-list li {
    min-width: unset;
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .page-registration-download-first-deposit-guide__hero-section {
    padding: 80px 0;
  }
  .page-registration-download-first-deposit-guide__hero-title {
    font-size: 2.2em;
  }
  .page-registration-download-first-deposit-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-registration-download-first-deposit-guide__section {
    padding: 40px 0;
  }
  .page-registration-download-first-deposit-guide__section-title {
    font-size: 1.8em;
  }
  .page-registration-download-first-deposit-guide__step-by-step {
    gap: 40px;
  }
  .page-registration-download-first-deposit-guide__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-registration-download-first-deposit-guide__step-title {
    font-size: 1.4em;
  }
  .page-registration-download-first-deposit-guide__notes-list li {
    padding: 20px;
  }
  .page-registration-download-first-deposit-guide__faq-question {
    font-size: 1.2em;
    padding: 15px 25px;
  }
  .page-registration-download-first-deposit-guide__faq-question::after {
    right: 25px;
  }
}

@media (max-width: 480px) {
  .page-registration-download-first-deposit-guide__hero-title {
    font-size: 1.8em;
  }
  .page-registration-download-first-deposit-guide__hero-subtitle {
    font-size: 0.9em;
  }
  .page-registration-download-first-deposit-guide__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-registration-download-first-deposit-guide__section-title {
    font-size: 1.5em;
  }
  .page-registration-download-first-deposit-guide__step-item {
    padding: 25px;
  }
  .page-registration-download-first-deposit-guide__step-title {
    font-size: 1.2em;
  }
  .page-registration-download-first-deposit-guide__step-item p {
    font-size: 0.95em;
  }
  .page-registration-download-first-deposit-guide__method-list li {
    flex-direction: column;
    gap: 10px;
  }
  .page-registration-download-first-deposit-guide__faq-question {
    font-size: 1.1em;
    padding: 12px 20px;
  }
  .page-registration-download-first-deposit-guide__faq-question::after {
    right: 20px;
  }
}