.page-the-thao {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Body background from shared.css */
}

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

.page-the-thao__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  padding-bottom: 40px;
  background-color: #FFFFFF;
}

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

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

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

.page-the-thao__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

.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: 1.05em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-the-thao__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-the-thao__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-the-thao__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-the-thao__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1e87c0;
  border-color: #1e87c0;
}

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

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

.page-the-thao__intro-section {
  padding: 60px 0;
  background-color: #f5fafd; /* Light background for contrast */
  color: #333333;
}

.page-the-thao__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-the-thao__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

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

.page-the-thao__icon-box {
  text-align: center;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-the-thao__icon-box:hover {
  transform: translateY(-5px);
}

.page-the-thao__icon-box-media {
  width: 240px;
  height: 240px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #e0f2f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-the-thao__icon-box-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-the-thao__icon-box-text {
  font-size: 1em;
  color: #555555;
}

.page-the-thao__content-area {
  padding: 60px 0;
  background-color: #26A9E0; /* Dark background */
  color: #FFFFFF; /* Light text */
}

.page-the-thao__content-area .page-the-thao__section-title {
  color: #FFFFFF;
  margin-bottom: 40px;
}

.page-the-thao__content-area p,
.page-the-thao__content-area ul,
.page-the-thao__content-area ol {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-the-thao__content-area strong {
  color: #FFFFFF;
}

.page-the-thao__content-area .page-the-thao__sub-title {
  font-size: 2em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.page-the-thao__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-the-thao__list,
.page-the-thao__numbered-list {
  list-style-position: inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-the-thao__list li,
.page-the-thao__numbered-list li {
  margin-bottom: 10px;
}

.page-the-thao__faq-section {
  padding: 60px 0;
  background-color: #f5fafd; /* Light background */
  color: #333333;
}

.page-the-thao__faq-section .page-the-thao__section-title {
  color: #26A9E0;
  margin-bottom: 40px;
}

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

.page-the-thao__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

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

.page-the-thao__faq-item[open] .page-the-thao__faq-question {
  background-color: #e0f2f7;
  border-bottom: 1px solid #cce9f2;
}

.page-the-thao__faq-question::-webkit-details-marker, /* Hide default marker */
.page-the-thao__faq-question::marker {
  display: none;
}

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

.page-the-thao__faq-toggle {
  font-size: 1.5em;
  font-weight: 300;
  margin-left: 15px;
  color: #26A9E0;
}

.page-the-thao__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #e0e0e0; /* Consistent border for open state */
}

.page-the-thao__faq-item:not([open]) .page-the-thao__faq-answer {
  border-top: none; /* Hide border when closed */
}

.page-the-thao__cta-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Brand color dark background */
  color: #FFFFFF; /* Light text */
  text-align: center;
}

.page-the-thao__cta-section .page-the-thao__section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-the-thao__cta-section .page-the-thao__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

/* General image responsiveness */
.page-the-thao img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-the-thao__content-container {
    padding: 20px 15px;
  }

  .page-the-thao__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-the-thao__hero-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 30px;
  }

  .page-the-thao__main-title {
    font-size: 2.2em; /* Smaller on mobile */
    text-align: center;
  }

  .page-the-thao__hero-description {
    font-size: 1em;
    text-align: center;
  }

  .page-the-thao__cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-the-thao__btn-primary,
  .page-the-thao__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-the-thao__hero-image {
    order: -1; /* Image above text on mobile */
    width: 100%;
  }

  .page-the-thao__hero-side-image {
    width: 100%;
  }

  .page-the-thao__intro-section,
  .page-the-thao__content-area,
  .page-the-thao__faq-section,
  .page-the-thao__cta-section {
    padding: 30px 0;
  }

  .page-the-thao__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-the-thao__section-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-the-thao__intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__icon-box-media {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
  }

  .page-the-thao__icon-box-title {
    font-size: 1.3em;
  }

  .page-the-thao__icon-box-text {
    font-size: 0.95em;
  }

  .page-the-thao__content-area .page-the-thao__sub-title {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-the-thao__content-area p,
  .page-the-thao__content-area ul,
  .page-the-thao__content-area ol {
    font-size: 0.95em;
  }

  .page-the-thao__content-image {
    margin: 20px auto;
  }

  .page-the-thao__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-the-thao__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  /* Mobile specific image adaptation */
  .page-the-thao img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-the-thao__section,
  .page-the-thao__card,
  .page-the-thao__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-the-thao__cta-buttons {
    display: flex;
    flex-direction: column; /* Ensure buttons stack vertically */
    gap: 10px;
  }
}