.page-beginner-guide-withdrawal-process {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6; /* Light background for readability */
}

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

.page-beginner-guide-withdrawal-process .hero-section {
  background: linear-gradient(135deg, #003366, #1a4f80); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-bottom: 5px solid #FFCC00; /* Accent color border */
}

.page-beginner-guide-withdrawal-process .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold accent for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-withdrawal-process .hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-beginner-guide-withdrawal-process .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-beginner-guide-withdrawal-process .btn-primary {
  background-color: #FFCC00; /* Gold accent */
  color: #003366; /* Dark blue text */
  margin: 10px;
}

.page-beginner-guide-withdrawal-process .btn-primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-beginner-guide-withdrawal-process .btn-secondary {
  background-color: #003366; /* Dark blue */
  color: #fff;
  border: 2px solid #FFCC00;
  margin: 10px;
}

.page-beginner-guide-withdrawal-process .btn-secondary:hover {
  background-color: #002244;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-beginner-guide-withdrawal-process .content-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-withdrawal-process .content-section:nth-of-type(even) {
  background-color: #fcfcfc;
}

.page-beginner-guide-withdrawal-process .section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-beginner-guide-withdrawal-process .section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.page-beginner-guide-withdrawal-process p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-beginner-guide-withdrawal-process strong {
  color: #003366;
}

.page-beginner-guide-withdrawal-process .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-withdrawal-process .styled-list,
.page-beginner-guide-withdrawal-process .step-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-beginner-guide-withdrawal-process .styled-list li {
  background-color: #e6f0f7; /* Light blue */
  border-left: 5px solid #003366;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #222;
  transition: all 0.3s ease;
}

.page-beginner-guide-withdrawal-process .styled-list li:hover {
  border-left-color: #FFCC00;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-withdrawal-process .step-list li {
  margin-bottom: 40px;
  padding: 30px;
  background-color: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: relative;
  counter-increment: step-counter;
}

.page-beginner-guide-withdrawal-process .step-list li::before {
  content: "Bước " counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #FFCC00;
  color: #003366;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9em;
}

.page-beginner-guide-withdrawal-process .step-list h3 {
  font-size: 1.8em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-beginner-guide-withdrawal-process .step-list p {
  font-size: 1em;
  color: #555;
}

.page-beginner-guide-withdrawal-process .sub-list {
  list-style: disc;
  margin-left: 25px;
  margin-top: 15px;
  color: #555;
}

.page-beginner-guide-withdrawal-process .sub-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-beginner-guide-withdrawal-process .step-image {
  max-width: 80%;
  margin: 20px auto;
  display: block;
  border: 1px solid #eee;
  border-radius: 8px;
}

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

.page-beginner-guide-withdrawal-process .info-card {
  background-color: #e6f0f7;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-top: 5px solid #003366;
}

.page-beginner-guide-withdrawal-process .info-card h3 {
  color: #003366;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-beginner-guide-withdrawal-process .info-card p {
  font-size: 1em;
  color: #555;
}

.page-beginner-guide-withdrawal-process .info-card .styled-list li {
  background-color: transparent;
  border: none;
  border-bottom: 1px dashed #cce0eb;
  padding: 10px 0;
  margin-bottom: 5px;
  font-size: 0.95em;
  color: #444;
}

.page-beginner-guide-withdrawal-process .info-card .styled-list li:last-child {
  border-bottom: none;
}

.page-beginner-guide-withdrawal-process .faq-item {
  background-color: #f7f7f7;
  border: 1px solid #eee;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-beginner-guide-withdrawal-process .faq-question {
  font-size: 1.4em;
  color: #003366;
  padding: 20px;
  cursor: pointer;
  margin: 0;
  background-color: #e6f0f7;
  border-bottom: 1px solid #ddeef8;
  position: relative;
}

.page-beginner-guide-withdrawal-process .faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-beginner-guide-withdrawal-process .faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-beginner-guide-withdrawal-process .faq-answer {
  padding: 0 20px 20px;
  font-size: 1.1em;
  color: #555;
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-beginner-guide-withdrawal-process .faq-item.active .faq-answer {
  display: block;
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-beginner-guide-withdrawal-process .cta-section {
  background: linear-gradient(135deg, #003366, #3a6b9a);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-top: 5px solid #FFCC00;
  border-bottom: 5px solid #FFCC00;
  margin-top: 40px;
}

.page-beginner-guide-withdrawal-process .cta-title {
  font-size: 3em;
  color: #FFCC00;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-withdrawal-process .cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-beginner-guide-withdrawal-process .hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide-withdrawal-process .hero-subtitle,
  .page-beginner-guide-withdrawal-process p,
  .page-beginner-guide-withdrawal-process .styled-list li,
  .page-beginner-guide-withdrawal-process .step-list p {
    font-size: 1em;
  }
  .page-beginner-guide-withdrawal-process .section-title {
    font-size: 2em;
  }
  .page-beginner-guide-withdrawal-process .step-list li {
    padding: 20px;
  }
  .page-beginner-guide-withdrawal-process .step-list h3 {
    font-size: 1.5em;
  }
  .page-beginner-guide-withdrawal-process .info-grid {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide-withdrawal-process .cta-title {
    font-size: 2.2em;
  }
  .page-beginner-guide-withdrawal-process .cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-withdrawal-process .hero-title {
    font-size: 2em;
  }
  .page-beginner-guide-withdrawal-process .hero-subtitle {
    font-size: 0.9em;
  }
  .page-beginner-guide-withdrawal-process .btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-beginner-guide-withdrawal-process .section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-withdrawal-process .step-list li::before {
    left: 10px;
  }
  .page-beginner-guide-withdrawal-process .cta-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-withdrawal-process .cta-description {
    font-size: 1em;
  }
}