/* Base styles for the huong-dan-choi page */
.page-huong-dan-choi {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main color for dark body background */
  background-color: #0D0E12; /* Background color */
}

.page-huong-dan-choi__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-huong-dan-choi__container--centered {
  text-align: center;
}

.page-huong-dan-choi__section {
  padding: 40px 0;
}

.page-huong-dan-choi__section--intro {
  background-color: #17191F; /* Card BG color */
  border-bottom: 1px solid #A84F0C;
}

.page-huong-dan-choi__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFB04D; /* Glow color for titles */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-huong-dan-choi__sub-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFA53A; /* Auxiliary color for sub-titles */
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-huong-dan-choi__text-block {
  font-size: 17px;
  margin-bottom: 15px;
  color: #FFF3E6;
}

.page-huong-dan-choi__text-block-inner {
  flex: 1;
  padding-left: 30px;
}

.page-huong-dan-choi__ordered-list,
.page-huong-dan-choi__unordered-list {
  list-style-position: inside;
  margin-bottom: 15px;
  padding-left: 20px;
  font-size: 16px;
  color: #FFF3E6;
}

.page-huong-dan-choi__ordered-list li,
.page-huong-dan-choi__unordered-list li {
  margin-bottom: 8px;
}

.page-huong-dan-choi__ordered-list li strong,
.page-huong-dan-choi__unordered-list li strong {
  color: #FFB04D;
}

.page-huong-dan-choi a {
  color: #FFA53A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-huong-dan-choi a:hover {
  color: #FF8C1A;
  text-decoration: underline;
}

/* Buttons */
.page-huong-dan-choi__btn-primary,
.page-huong-dan-choi__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  font-size: 16px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-huong-dan-choi__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
}