.page-huong-dan-choi-the-thao {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

.page-huong-dan-choi-the-thao__hero-section {
  padding-top: 10px; /* Small top padding, relies on body padding-top from shared.css */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Using auxiliary and primary color for a gradient */
  color: #FFFFFF;
}

.page-huong-dan-choi-the-thao__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 16px;
}

.page-huong-dan-choi-the-thao__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-huong-dan-choi-the-thao__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* H1 font size clamp */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFFFF; /* White text on dark gradient */
}

.page-huong-dan-choi-the-thao__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #F0F0F0; /* Slightly off-white for description */
}

.page-huong-dan-choi-the-thao__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-huong-dan-choi-the-thao__btn-primary,
.page-huong-dan-choi-the-thao__btn-secondary,
.page-huong-dan-choi-the-thao__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal; /* Allow button text to wrap */
  word-wrap: break-word; /* Allow button text to break words */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  max-width: 100%;
}

.page-huong-dan-choi-the-thao__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #FFFFFF;
  border: 2px solid transparent;
}

.page-huong-dan-choi-the-thao__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-huong-dan-choi-the-thao__btn-secondary {
  background-color: #FFFFFF;
  color: #2F6BFF; /* Primary color text */
  border: 2px solid #2F6BFF;
}

.page-huong-dan-choi-the-thao__btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-huong-dan-choi-the-thao__btn-small {
  background-color: #2F6BFF;
  color: #FFFFFF;
  border: none;
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
  margin-top: 10px;
}

.page-huong-dan-choi-the-thao__btn-small:hover {
  background-color: #4A8BFF;
}

.page-huong-dan-choi-the-thao__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-huong-dan-choi-the-thao__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: block; /* Ensure no extra space below image */
  margin: 0 auto;
}

/* Content Area */
.page-huong-dan-choi-the-thao__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.page-huong-dan-choi-the-thao__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 25px;
  text-align: center;
}

.page-huong-dan-choi-the-thao__section-title--white {
  color: #FFFFFF;
}

.page-huong-dan-choi-the-thao__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
}

.page-huong-dan-choi-the-thao__text-block .highlight {
  color: #2F6BFF; /* Primary color for highlights */
  font-weight: 600;
}

/* Guide Steps */
.page-huong-dan-choi-the-thao__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-huong-dan-choi-the-thao__step-item {
  background-color: #F4F7FB; /* Background color for step cards */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-huong-dan-choi-the-thao__step-title {
  font-size: 1.5rem;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-huong-dan-choi-the-thao__step-description {
  font-size: 0.95rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
}

.page-huong-dan-choi-the-thao__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* List Items */
.page-huong-dan-choi-the-thao__list-items {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-huong-dan-choi-the-thao__list-item {
  background-color: #F4F7FB; /* Background color */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #2F6BFF; /* Primary color for border */
  border-radius: 5px;
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-huong-dan-choi-the-thao__list-item strong {
  color: #000000; /* Custom Color_1776249996415 */
}

.page-huong-dan-choi-the-thao__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-huong-dan-choi-the-thao__faq-section {
  padding: 60px 16px;
  background-color: #2F6BFF; /* Primary color for dark section */
  color: #FFFFFF;
}

.page-huong-dan-choi-the-thao__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-huong-dan-choi-the-thao__faq-list {
  margin-top: 30px;
}

.page-huong-dan-choi-the-thao__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border: 1px solid #A5C4FF; /* Glow color for border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-huong-dan-choi-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
  list-style: none; /* For <details> summary */
}

.page-huong-dan-choi-the-thao__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-huong-dan-choi-the-thao__faq-question::marker {
  display: none; /* Hide default marker for Firefox */
}

.page-huong-dan-choi-the-thao__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-huong-dan-choi-the-thao__faq-qtext {
  flex-grow: 1;
}

.page-huong-dan-choi-the-thao__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
}

.page-huong-dan-choi-the-thao__faq-item[open] .page-huong-dan-choi-the-thao__faq-question {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-huong-dan-choi-the-thao__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #F0F0F0;
}

.page-huong-dan-choi-the-thao__faq-answer p {
  margin-bottom: 0;
}

/* Bottom CTA */
.page-huong-dan-choi-the-thao__cta-bottom {
  padding: 50px 16px;
  text-align: center;
  background-color: #6FA3FF; /* Auxiliary color for medium background */
  color: #FFFFFF;
}

.page-huong-dan-choi-the-thao__cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-huong-dan-choi-the-thao__cta-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-huong-dan-choi-the-thao__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #F0F0F0;
}

/* General image responsive styles */
.page-huong-dan-choi-the-thao img {
  max-width: 100%;
  height: auto;
  display: block; /* Ensures proper rendering and no extra space */
}

/* General contrast safety */
.page-huong-dan-choi-the-thao__light-bg {
  background-color: #FFFFFF;
  color: #1F2D3D;
}

.page-huong-dan-choi-the-thao__dark-bg {
  background-color: #2F6BFF;
  color: #FFFFFF;
}

.page-huong-dan-choi-the-thao__medium-bg {
  background-color: #6FA3FF;
  color: #FFFFFF; /* White text on medium blue */
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* HERO Section */
  .page-huong-dan-choi-the-thao__hero-section {
    padding-top: 10px !important; /* Small top padding, relies on body padding-top from shared.css */
    padding-bottom: 30px;
  }
  
  .page-huong-dan-choi-the-thao__hero-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .page-huong-dan-choi-the-thao__hero-content,
  .page-huong-dan-choi-the-thao__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-huong-dan-choi-the-thao__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    text-align: center;
  }

  .page-huong-dan-choi-the-thao__description {
    font-size: 1rem;
    text-align: center;
  }

  .page-huong-dan-choi-the-thao__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px; /* Add padding to the container */
  }

  /* Buttons */
  .page-huong-dan-choi-the-thao__btn-primary,
  .page-huong-dan-choi-the-thao__btn-secondary,
  .page-huong-dan-choi-the-thao a[class*="button"],
  .page-huong-dan-choi-the-thao a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important; /* Ensure padding for text */
    padding-right: 15px !important; /* Ensure padding for text */
  }

  /* Content Area */
  .page-huong-dan-choi-the-thao__content-area {
    padding: 30px 15px;
    margin-bottom: 30px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-huong-dan-choi-the-thao__section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 20px;
  }

  /* Guide Steps */
  .page-huong-dan-choi-the-thao__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-huong-dan-choi-the-thao__step-item {
    padding: 20px;
  }

  .page-huong-dan-choi-the-thao__step-title {
    font-size: 1.3rem;
  }

  /* List Items */
  .page-huong-dan-choi-the-thao__list-item {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  /* FAQ Section */
  .page-huong-dan-choi-the-thao__faq-section {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-huong-dan-choi-the-thao__faq-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-huong-dan-choi-the-thao__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-huong-dan-choi-the-thao__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  /* Bottom CTA */
  .page-huong-dan-choi-the-thao__cta-bottom {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-huong-dan-choi-the-thao__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Universal image and container styles for mobile */
  .page-huong-dan-choi-the-thao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-huong-dan-choi-the-thao__section,
  .page-huong-dan-choi-the-thao__card,
  .page-huong-dan-choi-the-thao__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}