.page-beginner-guide-how-to-deposit-withdraw {
  font-family: Arial, sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #121f33; /* Slightly lighter than primary for content background */
  line-height: 1.6;
}

.page-beginner-guide-how-to-deposit-withdraw .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-beginner-guide-how-to-deposit-withdraw .hero-section {
  background: linear-gradient(135deg, #1A2E47 0%, #0c1a2e 100%); /* Darker gradient for hero */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-beginner-guide-how-to-deposit-withdraw .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-beginner-guide-how-to-deposit-withdraw .hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.page-beginner-guide-how-to-deposit-withdraw .hero-actions .btn {
  margin: 0 10px;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-beginner-guide-how-to-deposit-withdraw .btn-primary {
  background-color: #FFD700;
  color: #1A2E47;
  border: 2px solid #FFD700;
}

.page-beginner-guide-how-to-deposit-withdraw .btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-beginner-guide-how-to-deposit-withdraw .btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-beginner-guide-how-to-deposit-withdraw .btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2E47;
  transform: translateY(-2px);
}

.page-beginner-guide-how-to-deposit-withdraw .intro-section, 
.page-beginner-guide-how-to-deposit-withdraw .deposit-guide-section, 
.page-beginner-guide-how-to-deposit-withdraw .withdrawal-guide-section, 
.page-beginner-guide-how-to-deposit-withdraw .important-notes-section, 
.page-beginner-guide-how-to-deposit-withdraw .faq-section, 
.page-beginner-guide-how-to-deposit-withdraw .cta-section {
  padding: 60px 0;
  background-color: #1A2E47;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-beginner-guide-how-to-deposit-withdraw .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-beginner-guide-how-to-deposit-withdraw .subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 10px;
}

.page-beginner-guide-how-to-deposit-withdraw p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-beginner-guide-how-to-deposit-withdraw strong {
  color: #FFD700;
}

.page-beginner-guide-how-to-deposit-withdraw .content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-how-to-deposit-withdraw .method-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-beginner-guide-how-to-deposit-withdraw .method-list li {
  background-color: #2a3d58; /* Slightly lighter dark blue */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 4px;
  font-size: 1.1em;
}

.page-beginner-guide-how-to-deposit-withdraw .step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-beginner-guide-how-to-deposit-withdraw .step-item {
  background-color: #2a3d58;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-beginner-guide-how-to-deposit-withdraw .step-item:hover {
  transform: translateY(-5px);
}

.page-beginner-guide-how-to-deposit-withdraw .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A2E47;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-beginner-guide-how-to-deposit-withdraw .step-item h4 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-beginner-guide-how-to-deposit-withdraw .step-item p {
  font-size: 1em;
  color: #c0c0c0;
}

.page-beginner-guide-how-to-deposit-withdraw .inline-link {
  color: #FFD700;
  text-decoration: underline;
}

.page-beginner-guide-how-to-deposit-withdraw .inline-link:hover {
  color: #e6c200;
}

.page-beginner-guide-how-to-deposit-withdraw .call-to-action-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-beginner-guide-how-to-deposit-withdraw .important-notes-section .notes-list {
  list-style: none;
  padding: 0;
}

.page-beginner-guide-how-to-deposit-withdraw .important-notes-section .notes-list li {
  background-color: #2a3d58;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-beginner-guide-how-to-deposit-withdraw .faq-item {
  background-color: #2a3d58;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-how-to-deposit-withdraw .faq-question {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-beginner-guide-how-to-deposit-withdraw .faq-answer {
  font-size: 1.1em;
  color: #c0c0c0;
  padding-left: 20px;
  border-left: 3px solid #FFD700;
  margin-top: 15px;
}

.page-beginner-guide-how-to-deposit-withdraw .cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #1A2E47;
  border-radius: 8px;
}

.page-beginner-guide-how-to-deposit-withdraw .cta-section .section-title {
  font-size: 2.8em;
  margin-bottom: 30px;
}

.page-beginner-guide-how-to-deposit-withdraw .cta-section p {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
}

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

  .page-beginner-guide-how-to-deposit-withdraw .hero-description,
  .page-beginner-guide-how-to-deposit-withdraw .cta-section p {
    font-size: 1em;
  }

  .page-beginner-guide-how-to-deposit-withdraw .hero-actions .btn {
    padding: 12px 20px;
    font-size: 1em;
    margin: 5px;
  }

  .page-beginner-guide-how-to-deposit-withdraw .section-title {
    font-size: 2em;
  }

  .page-beginner-guide-how-to-deposit-withdraw .subsection-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-how-to-deposit-withdraw .step-by-step {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide-how-to-deposit-withdraw .faq-question {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-how-to-deposit-withdraw .hero-title {
    font-size: 2em;
  }

  .page-beginner-guide-how-to-deposit-withdraw .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .page-beginner-guide-how-to-deposit-withdraw .hero-actions .btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .page-beginner-guide-how-to-deposit-withdraw .section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-how-to-deposit-withdraw .subsection-title {
    font-size: 1.3em;
  }
}