.page-beginner-guide-how-to-withdraw {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light gray text on dark background for readability */
  background-color: #1a1a1a; /* Slightly lighter black for better contrast */
}

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

.page-beginner-guide-how-to-withdraw .hero-section {
  background: linear-gradient(135deg, #000000, #333333); /* Dark gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold text for hero */
  border-bottom: 2px solid #FFD700;
}

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

.page-beginner-guide-how-to-withdraw .hero-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFD700;
}

.page-beginner-guide-how-to-withdraw .content-section {
  padding: 60px 0;
}

.page-beginner-guide-how-to-withdraw article {
  background-color: #000000; /* Pure black for article background */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-how-to-withdraw h2 {
  font-size: 2em;
  color: #FFD700; /* Gold for main headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #FFD700;
  padding-bottom: 10px;
}

.page-beginner-guide-how-to-withdraw h3 {
  font-size: 1.5em;
  color: #ffffff; /* White for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-beginner-guide-how-to-withdraw ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-beginner-guide-how-to-withdraw ul li {
  margin-bottom: 8px;
}

.page-beginner-guide-how-to-withdraw a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-beginner-guide-how-to-withdraw a:hover {
  color: #ffe066; /* Lighter gold on hover */
  text-decoration: underline;
}

.page-beginner-guide-how-to-withdraw .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px 0;
  text-decoration: none;
}

.page-beginner-guide-how-to-withdraw .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Black text */
  border: 2px solid #FFD700;
}

.page-beginner-guide-how-to-withdraw .btn-primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  color: #000000;
}

.page-beginner-guide-how-to-withdraw .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-beginner-guide-how-to-withdraw .btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-beginner-guide-how-to-withdraw .image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-beginner-guide-how-to-withdraw .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-how-to-withdraw .cta-block {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  border: 1px solid #FFD700;
}

.page-beginner-guide-how-to-withdraw .cta-block h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-beginner-guide-how-to-withdraw .cta-block p {
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-beginner-guide-how-to-withdraw .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

  .page-beginner-guide-how-to-withdraw h2 {
    font-size: 1.6em;
  }

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

  .page-beginner-guide-how-to-withdraw article {
    padding: 20px;
  }

  .page-beginner-guide-how-to-withdraw .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  
  .page-beginner-guide-how-to-withdraw .btn-secondary {
    margin-left: 0;
    margin-top: 10px;
  }

  .page-beginner-guide-how-to-withdraw .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

  .page-beginner-guide-how-to-withdraw h2 {
    font-size: 1.4em;
  }

  .page-beginner-guide-how-to-withdraw h3 {
    font-size: 1.2em;
  }

  .page-beginner-guide-how-to-withdraw article {
    padding: 15px;
  }
}