.page-beginner-guide-withdrawal {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-beginner-guide-withdrawal__hero {
  background: linear-gradient(135deg, #007BFF, #FFC107);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-withdrawal__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-beginner-guide-withdrawal__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-withdrawal__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
  position: relative;
  z-index: 2;
}

.page-beginner-guide-withdrawal__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-withdrawal__btn--primary {
  background-color: #FFC107;
  color: #000000; /* Dark text on light background */
  border: 2px solid #FFC107;
}

.page-beginner-guide-withdrawal__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
}

.page-beginner-guide-withdrawal__btn--secondary {
  background-color: #007BFF;
  color: #FFFFFF;
  border: 2px solid #007BFF;
  margin-left: 20px;
}

.page-beginner-guide-withdrawal__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
}

.page-beginner-guide-withdrawal__section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

.page-beginner-guide-withdrawal__section:last-child {
  border-bottom: none;
}

.page-beginner-guide-withdrawal__section--intro {
  background-color: #ffffff;
}

.page-beginner-guide-withdrawal__heading {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-beginner-guide-withdrawal__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-beginner-guide-withdrawal__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444444;
}

.page-beginner-guide-withdrawal__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-withdrawal__image--small {
  max-width: 70%;
  margin: 20px auto;
}

.page-beginner-guide-withdrawal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide-withdrawal__method-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-beginner-guide-withdrawal__method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-withdrawal__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-beginner-guide-withdrawal__method-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide-withdrawal__method-card p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

.page-beginner-guide-withdrawal__step-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-beginner-guide-withdrawal__step-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-left: 5px solid #007BFF;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-withdrawal__step-item:last-child {
  margin-bottom: 0;
}

.page-beginner-guide-withdrawal__step-title {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide-withdrawal__step-item p {
  font-size: 1.05em;
  color: #444444;
  margin-bottom: 10px;
}

.page-beginner-guide-withdrawal__step-item ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #555555;
}

.page-beginner-guide-withdrawal__step-item li {
  margin-bottom: 8px;
}

.page-beginner-guide-withdrawal__step-item a {
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
}

.page-beginner-guide-withdrawal__step-item a:hover {
  text-decoration: underline;
}

.page-beginner-guide-withdrawal__list {
  list-style-type: disc;
  margin-left: 30px;
  margin-top: 20px;
  color: #444444;
}

.page-beginner-guide-withdrawal__list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-beginner-guide-withdrawal__list strong {
  color: #007BFF;
}

.page-beginner-guide-withdrawal__section--cta {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-beginner-guide-withdrawal__section--cta .page-beginner-guide-withdrawal__heading {
  color: #FFFFFF;
}

.page-beginner-guide-withdrawal__section--cta .page-beginner-guide-withdrawal__heading::after {
  background-color: #FFC107;
}

.page-beginner-guide-withdrawal__section--cta p {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
}

.page-beginner-guide-withdrawal__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-beginner-guide-withdrawal__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-beginner-guide-withdrawal__faq-question {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-beginner-guide-withdrawal__faq-answer {
  font-size: 1.05em;
  color: #555555;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-withdrawal__title {
    font-size: 2.8em;
  }

  .page-beginner-guide-withdrawal__subtitle {
    font-size: 1.2em;
  }

  .page-beginner-guide-withdrawal__heading {
    font-size: 2em;
  }

  .page-beginner-guide-withdrawal__grid {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide-withdrawal__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-beginner-guide-withdrawal__btn--secondary {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-withdrawal__hero {
    padding: 80px 0;
  }

  .page-beginner-guide-withdrawal__title {
    font-size: 2.2em;
  }

  .page-beginner-guide-withdrawal__subtitle {
    font-size: 1.1em;
  }

  .page-beginner-guide-withdrawal__section {
    padding: 40px 0;
  }

  .page-beginner-guide-withdrawal__heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-beginner-guide-withdrawal__image--small {
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .page-beginner-guide-withdrawal__title {
    font-size: 1.8em;
  }

  .page-beginner-guide-withdrawal__subtitle {
    font-size: 1em;
  }

  .page-beginner-guide-withdrawal__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-beginner-guide-withdrawal__step-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-withdrawal__faq-question {
    font-size: 1.2em;
  }

  .page-beginner-guide-withdrawal__faq-answer {
    font-size: 0.95em;
  }
}