/* style/resources-deposit-withdrawal-guide.css */

/* Biến CSS */
:root {
  --page-resources-deposit-withdrawal-guide-primary-color: #0A2463;
  --page-resources-deposit-withdrawal-guide-secondary-color: #E3B505;
  --page-resources-deposit-withdrawal-guide-text-dark: #333333;
  --page-resources-deposit-withdrawal-guide-text-light: #FFFFFF;
  --page-resources-deposit-withdrawal-guide-background-light: #F9F9F9;
  --page-resources-deposit-withdrawal-guide-background-dark: #0A2463;
  --page-resources-deposit-withdrawal-guide-border-color: #DDDDDD;
}

.page-resources-deposit-withdrawal-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-resources-deposit-withdrawal-guide-text-dark);
}

.page-resources-deposit-withdrawal-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-deposit-withdrawal-guide__hero-section {
  background: linear-gradient(135deg, var(--page-resources-deposit-withdrawal-guide-primary-color), #2a4a83);
  color: var(--page-resources-deposit-withdrawal-guide-text-light);
  padding: 80px 0;
  text-align: center;
}

.page-resources-deposit-withdrawal-guide__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-resources-deposit-withdrawal-guide-secondary-color);
  line-height: 1.2;
}

.page-resources-deposit-withdrawal-guide__subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-deposit-withdrawal-guide__button {
  display: inline-block;
  background-color: var(--page-resources-deposit-withdrawal-guide-secondary-color);
  color: var(--page-resources-deposit-withdrawal-guide-primary-color);
  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-resources-deposit-withdrawal-guide__button:hover {
  background-color: #f0c521; /* Slightly brighter yellow */
  transform: translateY(-2px);
}

.page-resources-deposit-withdrawal-guide__button--primary {
  background-color: var(--page-resources-deposit-withdrawal-guide-secondary-color);
  color: var(--page-resources-deposit-withdrawal-guide-primary-color);
}

.page-resources-deposit-withdrawal-guide__button--secondary {
  background-color: var(--page-resources-deposit-withdrawal-guide-primary-color);
  color: var(--page-resources-deposit-withdrawal-guide-secondary-color);
  border: 1px solid var(--page-resources-deposit-withdrawal-guide-secondary-color);
  margin-left: 15px;
}

.page-resources-deposit-withdrawal-guide__button--secondary:hover {
  background-color: #1a3c7a; /* Darker primary color */
  border-color: #f0c521;
}

.page-resources-deposit-withdrawal-guide__content-section {
  padding: 60px 0;
  background-color: var(--page-resources-deposit-withdrawal-guide-background-light);
}

.page-resources-deposit-withdrawal-guide__article-content {
  max-width: 800px; /* Optimal width for long-form reading */
  margin: 0 auto;
  background-color: var(--page-resources-deposit-withdrawal-guide-text-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-deposit-withdrawal-guide__article-content p {
  margin-bottom: 1em;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-resources-deposit-withdrawal-guide__heading-2 {
  font-size: 2em;
  color: var(--page-resources-deposit-withdrawal-guide-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--page-resources-deposit-withdrawal-guide-secondary-color);
  padding-bottom: 10px;
}

.page-resources-deposit-withdrawal-guide__heading-3 {
  font-size: 1.5em;
  color: var(--page-resources-deposit-withdrawal-guide-primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-deposit-withdrawal-guide__list,
.page-resources-deposit-withdrawal-guide__numbered-list {
  margin-left: 25px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-resources-deposit-withdrawal-guide__list li,
.page-resources-deposit-withdrawal-guide__numbered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-resources-deposit-withdrawal-guide__list li strong {
  color: var(--page-resources-deposit-withdrawal-guide-primary-color);
}

.page-resources-deposit-withdrawal-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-deposit-withdrawal-guide__faq-list {
  list-style: none;
  padding: 0;
}

.page-resources-deposit-withdrawal-guide__faq-list li {
  background-color: #f0f4f7;
  border-left: 5px solid var(--page-resources-deposit-withdrawal-guide-secondary-color);
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.05em;
}

.page-resources-deposit-withdrawal-guide__faq-list li strong {
  color: var(--page-resources-deposit-withdrawal-guide-primary-color);
  display: block;
  margin-bottom: 5px;
}

.page-resources-deposit-withdrawal-guide__cta-group {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-resources-deposit-withdrawal-guide__return-link {
  text-align: center;
  margin-top: 40px;
}

.page-resources-deposit-withdrawal-guide__link {
  color: var(--page-resources-deposit-withdrawal-guide-primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-deposit-withdrawal-guide__link:hover {
  color: var(--page-resources-deposit-withdrawal-guide-secondary-color);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-deposit-withdrawal-guide__title {
    font-size: 2.2em;
  }

  .page-resources-deposit-withdrawal-guide__subtitle {
    font-size: 1em;
  }

  .page-resources-deposit-withdrawal-guide__heading-2 {
    font-size: 1.8em;
  }

  .page-resources-deposit-withdrawal-guide__heading-3 {
    font-size: 1.3em;
  }

  .page-resources-deposit-withdrawal-guide__article-content {
    padding: 20px;
  }

  .page-resources-deposit-withdrawal-guide__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  
  .page-resources-deposit-withdrawal-guide__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .page-resources-deposit-withdrawal-guide__cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-resources-deposit-withdrawal-guide__title {
    font-size: 1.8em;
  }

  .page-resources-deposit-withdrawal-guide__hero-section {
    padding: 50px 0;
  }

  .page-resources-deposit-withdrawal-guide__heading-2 {
    font-size: 1.5em;
  }

  .page-resources-deposit-withdrawal-guide__heading-3 {
    font-size: 1.2em;
  }

  .page-resources-deposit-withdrawal-guide__button {
    width: 100%;
    max-width: 280px;
  }
}