.page-beginner-guide-how-to-deposit {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #1A202C;
}

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

.page-beginner-guide-how-to-deposit .hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-beginner-guide-how-to-deposit .hero-section h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
}

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

.page-beginner-guide-how-to-deposit .cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA buttons */
  color: #1A202C; /* Dark text on gold */
  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;
  border: none;
  cursor: pointer;
}

.page-beginner-guide-how-to-deposit .cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-beginner-guide-how-to-deposit .secondary-cta {
  margin-top: 30px;
}

.page-beginner-guide-how-to-deposit .content-section {
  padding: 60px 0;
  background-color: #2c3445; /* Slightly lighter dark background for content */
}

.page-beginner-guide-how-to-deposit article {
  background-color: #1A202C;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-how-to-deposit h2 {
  font-size: 2.5em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-beginner-guide-how-to-deposit h3 {
  font-size: 1.8em;
  color: #F0F0F0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-beginner-guide-how-to-deposit p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-beginner-guide-how-to-deposit ul,
.page-beginner-guide-how-to-deposit ol {
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-beginner-guide-how-to-deposit ul li,
.page-beginner-guide-how-to-deposit ol li {
  margin-bottom: 10px;
}

.page-beginner-guide-how-to-deposit a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-beginner-guide-how-to-deposit a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-beginner-guide-how-to-deposit .step-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  background-color: #2c3445;
  padding: 20px;
  border-radius: 8px;
}

.page-beginner-guide-how-to-deposit .step-block:nth-child(even) {
  flex-direction: row-reverse;
}

.page-beginner-guide-how-to-deposit .step-block img.content-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin: 0 20px 20px 0;
  object-fit: cover;
}

.page-beginner-guide-how-to-deposit .step-block:nth-child(even) img.content-image {
  margin: 0 0 20px 20px;
}

@media (min-width: 768px) {
  .page-beginner-guide-how-to-deposit .step-block img.content-image {
    width: 30%;
    margin-bottom: 0;
  }
  .page-beginner-guide-how-to-deposit .step-block p,
  .page-beginner-guide-how-to-deposit .step-block ul {
    width: 65%;
  }
}

.page-beginner-guide-how-to-deposit .tip-box,
.page-beginner-guide-how-to-deposit .note-box {
  background-color: #3a475d; /* A darker shade for info boxes */
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin: 25px 0;
  border-radius: 5px;
}

.page-beginner-guide-how-to-deposit .tip-box p,
.page-beginner-guide-how-to-deposit .note-box p {
  margin: 0;
  color: #F0F0F0;
}

.page-beginner-guide-how-to-deposit .action-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-beginner-guide-how-to-deposit .large-cta {
  padding: 18px 35px;
  font-size: 1.2em;
}

@media (max-width: 767px) {
  .page-beginner-guide-how-to-deposit .hero-section h1 {
    font-size: 2.2em;
  }
  .page-beginner-guide-how-to-deposit h2 {
    font-size: 1.8em;
  }
  .page-beginner-guide-how-to-deposit h3 {
    font-size: 1.4em;
  }
  .page-beginner-guide-how-to-deposit article {
    padding: 20px;
  }
  .page-beginner-guide-how-to-deposit .step-block {
    flex-direction: column;
    text-align: center;
  }
  .page-beginner-guide-how-to-deposit .step-block img.content-image {
    margin: 0 auto 20px auto;
  }
  .page-beginner-guide-how-to-deposit .step-block:nth-child(even) img.content-image {
    margin: 0 auto 20px auto;
  }
  .page-beginner-guide-how-to-deposit .action-buttons .large-cta {
    width: 100%;
    max-width: 300px;
  }
}