.page-the-thao {
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

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

.page-the-thao__hero-section {
  padding-top: 10px; /* Adjusted for header offset, as body handles main padding */
  padding-bottom: 40px;
}

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

.page-the-thao__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  padding-right: 20px;
}

.page-the-thao__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff; /* Text on dark background */
}

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

.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;
  display: block;
  border-radius: 8px;
}

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

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  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%);
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

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

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

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

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

.page-the-thao__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: inherit;
}

.page-the-thao__intro-section {
  padding: 60px 0;
}

.page-the-thao__intro-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-the-thao__feature-item {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #ffffff; /* Card BG */
  color: #1F2D3D;
}

.page-the-thao__icon-box-media {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #D6E2FF;
  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__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-the-thao__feature-text {
  font-size: 1rem;
  color: #1F2D3D;
}

.page-the-thao__types-section {
  padding: 60px 0;
}

.page-the-thao__type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-the-thao__type-card {
  background: #ffffff;
  color: #1F2D3D;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.page-the-thao__type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-the-thao__type-card h3,
.page-the-thao__type-card p {
  padding: 0 25px;
}

.page-the-thao__type-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #000000;
}

.page-the-thao__type-text {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-the-thao__guide-section {
  padding: 60px 0;
}

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

.page-the-thao__step-item {
  background: #ffffff;
  color: #1F2D3D;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  padding-top: 70px;
}

.page-the-thao__step-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #2F6BFF;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.page-the-thao__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000;
}

.page-the-thao__step-text {
  font-size: 1rem;
  color: #1F2D3D;
}

.page-the-thao__guide-cta {
  text-align: center;
}

.page-the-thao__analysis-section {
  padding: 60px 0;
}

.page-the-thao__analysis-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
}

.page-the-thao__analysis-item {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-the-thao__analysis-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-the-thao__analysis-item h3,
.page-the-thao__analysis-item p {
  padding: 0 25px;
}

.page-the-thao__analysis-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-the-thao__analysis-text {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-the-thao__analysis-footer {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.05rem;
  color: #ffffff;
}

.page-the-thao__analysis-cta {
  text-align: center;
}

.page-the-thao__promo-section {
  padding: 60px 0;
}

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

.page-the-thao__promo-card {
  background: #ffffff;
  color: #1F2D3D;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.page-the-thao__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-the-thao__promo-card h3,
.page-the-thao__promo-card p {
  padding: 0 25px;
}

.page-the-thao__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #000000;
}

.page-the-thao__promo-text {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-the-thao__promo-cta {
  text-align: center;
}

.page-the-thao__trust-section {
  padding: 60px 0;
}

.page-the-thao__trust-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-the-thao__trust-item {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-the-thao__trust-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-the-thao__trust-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-the-thao__trust-text {
  font-size: 1rem;
  color: #ffffff;
}

.page-the-thao__trust-cta {
  text-align: center;
}

.page-the-thao__faq-section {
  padding: 60px 0;
}

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

.page-the-thao__faq-item {
  background: #ffffff;
  color: #1F2D3D;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  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;
  cursor: pointer;
  color: #000000;
  list-style: none;
}

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

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

.page-the-thao__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
}

.page-the-thao__faq-item[open] .page-the-thao__faq-toggle {
  content: '−';
}

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

.page-the-thao__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

.page-the-thao__conclusion-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-the-thao {
    font-size: 15px;
    line-height: 1.5;
  }

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

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

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

  .page-the-thao__hero-content {
    padding-right: 0;
    text-align: center;
  }

  .page-the-thao__hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-the-thao__hero-description {
    font-size: 1rem;
  }

  .page-the-thao__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

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

  .page-the-thao__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 15px;
  }

  .page-the-thao__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-the-thao__intro-section,
  .page-the-thao__types-section,
  .page-the-thao__guide-section,
  .page-the-thao__analysis-section,
  .page-the-thao__promo-section,
  .page-the-thao__trust-section,
  .page-the-thao__faq-section,
  .page-the-thao__conclusion-section {
    padding: 40px 0;
  }

  .page-the-thao__intro-features,
  .page-the-thao__type-grid,
  .page-the-thao__guide-steps,
  .page-the-thao__analysis-grid,
  .page-the-thao__promo-grid,
  .page-the-thao__trust-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-the-thao__feature-item,
  .page-the-thao__type-card,
  .page-the-thao__step-item,
  .page-the-thao__analysis-item,
  .page-the-thao__promo-card,
  .page-the-thao__trust-item {
    min-width: unset;
  }

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

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

  .page-the-thao__type-title {
    font-size: 1.3rem;
  }

  .page-the-thao__type-image {
    height: 180px;
  }

  .page-the-thao__step-title {
    font-size: 1.2rem;
  }

  .page-the-thao__analysis-image {
    height: 200px;
  }

  .page-the-thao__analysis-title {
    font-size: 1.3rem;
  }

  .page-the-thao__promo-image {
    height: 180px;
  }

  .page-the-thao__promo-title {
    font-size: 1.3rem;
  }

  .page-the-thao__trust-icon {
    width: 80px;
    height: 80px;
  }

  .page-the-thao__trust-title {
    font-size: 1.2rem;
  }

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

  .page-the-thao__faq-answer {
    padding: 0 20px 15px;
  }

  .page-the-thao__conclusion-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .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,
  .page-the-thao__hero-cta-buttons,
  .page-the-thao__guide-cta,
  .page-the-thao__analysis-cta,
  .page-the-thao__promo-cta,
  .page-the-thao__trust-cta,
  .page-the-thao__conclusion-cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-the-thao__hero-title {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
  }

  .page-the-thao__section-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

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

  .page-the-thao__feature-title,
  .page-the-thao__type-title,
  .page-the-thao__step-title,
  .page-the-thao__analysis-title,
  .page-the-thao__promo-title,
  .page-the-thao__trust-title {
    font-size: 1.1rem;
  }
}