/* style/beginner-guide-first-deposit.css */
.page-beginner-guide-first-deposit {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931; /* Primary dark background */
}

.page-beginner-guide-first-deposit .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide-first-deposit h1, .page-beginner-guide-first-deposit h2, .page-beginner-guide-first-deposit h3 {
  color: #FFD700; /* Gold for headings */
  text-align: center;
  margin-bottom: 25px;
}

.page-beginner-guide-first-deposit h1 {
  font-size: 3.2em;
  font-weight: bold;
  line-height: 1.2;
}

.page-beginner-guide-first-deposit h2 {
  font-size: 2.5em;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-beginner-guide-first-deposit h3 {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  color: #FFD700; /* Gold for subheadings */
}

.page-beginner-guide-first-deposit p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-beginner-guide-first-deposit .highlight {
  color: #FFD700;
}

.page-beginner-guide-first-deposit .btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-beginner-guide-first-deposit .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-beginner-guide-first-deposit .btn-primary:hover {
  background-color: #e6c200;
  color: #000;
}

.page-beginner-guide-first-deposit .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-right: 15px;
}

.page-beginner-guide-first-deposit .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

/* Hero Section */
.page-beginner-guide-first-deposit .hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #2c3e50 100%); /* Dark gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  border-bottom: 5px solid #FFD700;
}

.page-beginner-guide-first-deposit .hero-section h1 {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit .hero-section p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.2em;
  color: #E0E0E0;
}

/* Intro Section */
.page-beginner-guide-first-deposit .intro-section {
  padding: 60px 0;
  background-color: #1a2a44; /* Slightly lighter dark background */
}

.page-beginner-guide-first-deposit .intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-beginner-guide-first-deposit .intro-content p {
  text-align: center;
  max-width: 900px;
}

.page-beginner-guide-first-deposit .intro-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Why Choose Section */
.page-beginner-guide-first-deposit .why-choose-section {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-beginner-guide-first-deposit .why-choose-section h2 {
  margin-bottom: 50px;
}

.page-beginner-guide-first-deposit .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-beginner-guide-first-deposit .feature-item {
  background-color: #1a2a44;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-beginner-guide-first-deposit .feature-item:hover {
  transform: translateY(-5px);
}

.page-beginner-guide-first-deposit .feature-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit .feature-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-beginner-guide-first-deposit .feature-item p {
  font-size: 0.95em;
  color: #B0B0B0;
}

/* Deposit Steps Section */
.page-beginner-guide-first-deposit .deposit-steps-section {
  padding: 80px 0;
  background-color: #1a2a44;
}

.page-beginner-guide-first-deposit .section-description {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.15em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-first-deposit .step-item {
  background-color: #0A1931;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-beginner-guide-first-deposit .step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #FFD700;
  color: #0A1931;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-beginner-guide-first-deposit .step-item h3 {
  text-align: left;
  margin-left: 60px; /* Adjust for step number */
  margin-top: 0;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-beginner-guide-first-deposit .step-item p {
  margin-left: 60px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-beginner-guide-first-deposit .step-item ul {
  list-style: none;
  padding-left: 80px;
  margin-bottom: 20px;
}

.page-beginner-guide-first-deposit .step-item ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #E0E0E0;
}

.page-beginner-guide-first-deposit .step-item ul li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFD700;
}

.page-beginner-guide-first-deposit .step-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  align-self: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit .button-group {
  margin-left: 60px;
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

/* Promo Section */
.page-beginner-guide-first-deposit .promo-section {
  padding: 80px 0;
  background-color: #0A1931;
  text-align: center;
}

.page-beginner-guide-first-deposit .promo-section h2 {
  margin-bottom: 30px;
}

.page-beginner-guide-first-deposit .promo-section p {
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-beginner-guide-first-deposit .promo-section ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
}

.page-beginner-guide-first-deposit .promo-section ul li {
  background-color: #1a2a44;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  position: relative;
  padding-left: 45px;
  color: #E0E0E0;
}

.page-beginner-guide-first-deposit .promo-section ul li::before {
  content: '⭐';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.page-beginner-guide-first-deposit .promo-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Important Notes Section */
.page-beginner-guide-first-deposit .important-notes-section {
  padding: 80px 0;
  background-color: #1a2a44;
}

.page-beginner-guide-first-deposit .important-notes-section h2 {
  margin-bottom: 30px;
}

.page-beginner-guide-first-deposit .important-notes-section ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-beginner-guide-first-deposit .important-notes-section ul li {
  background-color: #0A1931;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-beginner-guide-first-deposit .note-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-beginner-guide-first-deposit .faq-section {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-beginner-guide-first-deposit .faq-section h2 {
  margin-bottom: 50px;
}

.page-beginner-guide-first-deposit .faq-item {
  background-color: #1a2a44;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit .faq-item h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 15px;
  text-align: left;
}

.page-beginner-guide-first-deposit .faq-item p {
  color: #B0B0B0;
  font-size: 1em;
  line-height: 1.7;
  margin-left: 0;
}

/* Call to Action Section */
.page-beginner-guide-first-deposit .cta-section {
  padding: 80px 0;
  background-color: #1a2a44;
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-beginner-guide-first-deposit .cta-section h2 {
  margin-bottom: 25px;
}

.page-beginner-guide-first-deposit .cta-section p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-beginner-guide-first-deposit h1 {
    font-size: 2.5em;
  }

  .page-beginner-guide-first-deposit h2 {
    font-size: 2em;
  }

  .page-beginner-guide-first-deposit h3 {
    font-size: 1.5em;
    margin-left: 0;
    text-align: center;
  }

  .page-beginner-guide-first-deposit .intro-content {
    flex-direction: column;
  }

  .page-beginner-guide-first-deposit .feature-grid {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide-first-deposit .step-number {
    position: static;
    margin: 0 auto 20px auto;
  }

  .page-beginner-guide-first-deposit .step-item h3,
  .page-beginner-guide-first-deposit .step-item p,
  .page-beginner-guide-first-deposit .step-item ul,
  .page-beginner-guide-first-deposit .button-group {
    margin-left: 0;
    text-align: center;
  }

  .page-beginner-guide-first-deposit .step-item ul {
    padding-left: 0;
  }

  .page-beginner-guide-first-deposit .step-item ul li {
    padding-left: 0;
    text-align: center;
  }

  .page-beginner-guide-first-deposit .step-item ul li::before {
    position: static;
    margin-right: 10px;
  }

  .page-beginner-guide-first-deposit .button-group {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .page-beginner-guide-first-deposit .btn-secondary {
    margin-right: 0;
  }

  .page-beginner-guide-first-deposit .promo-section ul li {
    padding-left: 20px;
    text-align: center;
  }

  .page-beginner-guide-first-deposit .promo-section ul li::before {
    position: static;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-first-deposit h1 {
    font-size: 2em;
  }

  .page-beginner-guide-first-deposit h2 {
    font-size: 1.7em;
  }

  .page-beginner-guide-first-deposit .hero-section {
    padding: 60px 0;
  }

  .page-beginner-guide-first-deposit .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}