.page-ththao {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

.page-ththao__hero-section {
  position: relative;
  padding-top: 10px; /* Small padding-top to avoid conflict with body padding */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-ththao__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Adjust as needed */
  overflow: hidden;
}

.page-ththao__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-ththao__hero-content {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 0 20px;
  text-align: center;
}

.page-ththao__main-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  line-height: 1.2;
  color: #1F2D3D;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ththao__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-ththao__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-ththao__cta-button:hover {
  opacity: 0.9;
}

.page-ththao__content-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-ththao__section-title {
  font-size: clamp(1.5em, 2.5vw, 2.2em);
  font-weight: 600;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.page-ththao__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #2F6BFF;
  border-radius: 2px;
}

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

.page-ththao__feature-card {
  background-color: #F4F7FB;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-ththao__card-title {
  font-size: 1.3em;
  color: #2F6BFF;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-ththao__card-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #1F2D3D;
}

.page-ththao__image-text-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.page-ththao__offering-image {
  flex: 1 1 45%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
}

.page-ththao__offering-details {
  flex: 1 1 45%;
}

.page-ththao__text {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-ththao__offering-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-ththao__list-item {
  font-size: 1em;
  line-height: 1.8;
  color: #1F2D3D;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.page-ththao__list-item::before {
  content: '✔';
  color: #2F6BFF;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-ththao__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-ththao__advantage-item {
  background-color: #F4F7FB;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-ththao__advantage-title {
  font-size: 1.3em;
  color: #2F6BFF;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-ththao__advantage-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #1F2D3D;
}

.page-ththao__cta-section {
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  margin: 40px auto;
  border-radius: 10px;
  max-width: 1200px;
}

.page-ththao__cta-title {
  font-size: clamp(1.6em, 2.8vw, 2.5em);
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-ththao__cta-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-ththao__cta-button--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-ththao__hero-content {
    padding: 0 15px;
  }

  .page-ththao__main-title {
    font-size: 2em;
  }

  .page-ththao__description {
    font-size: 1em;
  }

  .page-ththao__content-section {
    margin: 30px auto;
    padding: 15px;
  }

  .page-ththao__section-title {
    font-size: 1.8em;
  }

  .page-ththao__feature-grid,
  .page-ththao__image-text-layout,
  .page-ththao__advantage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-ththao__offering-image {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .page-ththao__offering-details {
    flex: none;
    width: 100%;
  }

  .page-ththao__cta-section {
    padding: 40px 15px;
  }

  .page-ththao__cta-title {
    font-size: 2em;
  }

  .page-ththao__cta-text {
    font-size: 1em;
  }

  /* Ensure all images within .page-ththao are responsive */
  .page-ththao img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-ththao__main-title {
    font-size: 1.6em;
  }

  .page-ththao__section-title {
    font-size: 1.5em;
  }

  .page-ththao__cta-title {
    font-size: 1.6em;
  }

  .page-ththao__cta-button--large {
    padding: 15px 25px;
    font-size: 1em;
  }
}