.page-the-thao {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light body background */
  background-color: #F4F7FB; /* Body background color */
}

.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background-color: #F4F7FB;
}

.page-the-thao__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 16px;
  gap: 30px;
}

.page-the-thao__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #1F2D3D;
}

.page-the-thao__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-the-thao__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

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

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.page-the-thao__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-the-thao__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-the-thao__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-the-thao__btn-secondary:hover {
  background: #F0F5FF;
  transform: translateY(-2px);
}

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

.page-the-thao__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-the-thao__intro-section,
.page-the-thao__content-section,
.page-the-thao__guide-section,
.page-the-thao__promo-section,
.page-the-thao__faq-section,
.page-the-thao__cta-bottom-section {
  padding: 80px 0;
}

.page-the-thao__light-bg {
  background-color: #F4F7FB;
  color: #333333;
}

.page-the-thao__dark-bg {
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-the-thao__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-the-thao__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-the-thao__section-title--light {
  color: #ffffff;
}

.page-the-thao__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #1F2D3D;
}

.page-the-thao__text-block--light {
  color: #ffffff;
}

.page-the-thao__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-the-thao__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-the-thao__feature-item:hover {
  transform: translateY(-5px);
}

.page-the-thao__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D6E2FF; /* Light background for the icon circle */
  box-shadow: 0 0 0 8px #A5C4FF;
}

.page-the-thao__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-the-thao__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-the-thao__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
}

.page-the-thao__sport-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-the-thao__sport-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-the-thao__sport-card:hover {
  transform: translateY(-5px);
}

.page-the-thao__sport-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-the-thao__sport-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1F2D3D;
  padding: 20px 20px 10px;
}

.page-the-thao__sport-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  padding: 0 20px 20px;
}

.page-the-thao__view-all-button-container {
  text-align: center;
  margin-top: 50px;
}

.page-the-thao__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-the-thao__guide-step {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-the-thao__guide-image {
  max-width: 100%;
  height: 200px; /* Fixed height for guide images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-the-thao__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-the-thao__step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
}

.page-the-thao__btn-text {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.page-the-thao__btn-text:hover {
  color: #4A8BFF;
  text-decoration: underline;
}

.page-the-thao__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-the-thao__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.page-the-thao__promo-card:hover {
  transform: translateY(-5px);
}

.page-the-thao__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
}

.page-the-thao__promo-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1F2D3D;
  padding: 20px 20px 10px;
}

.page-the-thao__promo-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  padding: 0 20px 20px;
}

.page-the-thao__faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.page-the-thao__faq-item {
  background-color: #ffffff;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-the-thao__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1F2D3D;
  cursor: pointer;
  background-color: #F8FBFF;
  list-style: none; /* For details/summary */
}

.page-the-thao__faq-question::-webkit-details-marker {
  display: none;
}

.page-the-thao__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-the-thao__faq-item[open] .page-the-thao__faq-toggle {
  transform: rotate(45deg);
}

.page-the-thao__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
}

.page-the-thao__faq-answer p {
  margin: 0;
}

.page-the-thao__cta-bottom-content {
  text-align: center;
}

.page-the-thao__cta-bottom-content .page-the-thao__cta-buttons {
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-the-thao__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-the-thao__hero-content {
    order: 2;
  }

  .page-the-thao__hero-image {
    order: 1;
    margin-bottom: 30px;
  }

  .page-the-thao__main-title,
  .page-the-thao__description,
  .page-the-thao__section-title,
  .page-the-thao__text-block {
    text-align: center;
  }

  .page-the-thao__cta-buttons {
    justify-content: center;
  }

  .page-the-thao__icon-box-media {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-the-thao__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .page-the-thao__hero-container {
    padding: 30px 15px !important;
  }

  .page-the-thao__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
  }

  .page-the-thao__description {
    font-size: 1rem !important;
  }

  .page-the-thao__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
  }

  /* Module 1 (Features Grid) */
  .page-the-thao__intro-section,
  .page-the-thao__content-section,
  .page-the-thao__guide-section,
  .page-the-thao__promo-section,
  .page-the-thao__faq-section,
  .page-the-thao__cta-bottom-section {
    padding: 50px 0 !important;
  }

  .page-the-thao__content-area {
    padding: 0 15px !important;
  }

  .page-the-thao__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
  }

  .page-the-thao__text-block {
    font-size: 0.95rem !important;
    margin-bottom: 30px !important;
  }

  .page-the-thao__features-grid,
  .page-the-thao__sport-categories,
  .page-the-thao__guide-steps,
  .page-the-thao__promo-cards {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-the-thao__icon-box-media {
    width: 150px !important;
    height: 150px !important;
    margin-bottom: 20px !important;
  }

  .page-the-thao__feature-title {
    font-size: 1.3rem !important;
  }

  .page-the-thao__feature-description {
    font-size: 0.9rem !important;
  }

  /* General Images */
  .page-the-thao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-the-thao__hero-side-image {
    height: auto !important;
  }

  .page-the-thao__sport-image {
    height: 180px !important; /* Adjust fixed height for mobile */
  }

  .page-the-thao__guide-image {
    height: 160px !important; /* Adjust fixed height for mobile */
  }

  .page-the-thao__promo-image {
    height: 200px !important; /* Adjust fixed height for mobile */
  }

  /* FAQ Section */
  .page-the-thao__faq-question {
    font-size: 1rem !important;
    padding: 15px 20px !important;
  }

  .page-the-thao__faq-answer {
    padding: 0 20px 15px !important;
    font-size: 0.9rem !important;
  }

  .page-the-thao__faq-toggle {
    font-size: 1.3rem !important;
  }

  /* Ensure all containers have proper mobile padding and width */
  .page-the-thao__section,
  .page-the-thao__card,
  .page-the-thao__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}