.page-tintc {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-tintc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-tintc__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
}

.page-tintc__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure image wrapper can be wide */
  margin-bottom: 20px;
}

.page-tintc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-tintc__hero-content {
  max-width: 900px;
  padding: 0 20px 40px;
}

.page-tintc__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-tintc__hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
  color: #FFFFFF;
}

.page-tintc__section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

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

.page-tintc__news-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-tintc__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-tintc__news-card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-tintc__news-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-tintc__news-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tintc__news-card-title a {
  color: #2F6BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tintc__news-card-title a:hover {
  color: #6FA3FF;
}

.page-tintc__news-card-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  display: block;
}

.page-tintc__news-card-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tintc__news-card-link {
  display: inline-block;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-tintc__news-card-link:hover {
  color: #6FA3FF;
}

.page-tintc__view-all {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 60px;
}

.page-tintc__button {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: #FFFFFF;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.page-tintc__button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%);
}

.page-tintc__cta-section {
  background-color: #2F6BFF;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.page-tintc__cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-tintc__cta-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Reusing button style */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-tintc__hero-title {
    font-size: 2rem;
  }

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

  .page-tintc__section-title {
    font-size: 1.75rem;
  }

  .page-tintc__news-grid {
    grid-template-columns: 1fr;
  }

  .page-tintc__news-card-title {
    font-size: 1.25rem;
  }

  .page-tintc__news-card-image {
    height: auto;
    min-height: 200px; /* Ensure images are not too small */
  }

  .page-tintc__cta-title {
    font-size: 2rem;
  }

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

  .page-tintc__container {
    padding: 15px;
  }

  /* Mobile content area image overflow fix */
  .page-tintc img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-tintc__hero-section {
    padding-top: 5px;
  }
  .page-tintc__hero-content {
    padding: 0 15px 30px;
  }
  .page-tintc__hero-title {
    font-size: 1.75rem;
  }
  .page-tintc__section-title {
    font-size: 1.5rem;
  }
  .page-tintc__cta-title {
    font-size: 1.75rem;
  }
  .page-tintc__button {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .page-tintc__news-card-image {
    min-height: 200px;
  }
}