.page-tintc {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-tintc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-tintc__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for aesthetic */
  margin-bottom: 30px;
}

.page-tintc__hero-content {
  max-width: 900px;
  z-index: 1; /* Ensure content is above image if any positioning issues */
}

.page-tintc__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-tintc__subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-tintc__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-tintc__cta-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Slightly different gradient on hover */
}

.page-tintc__latest-news-section,
.page-tintc__why-choose-us-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green for sections */
}

.page-tintc__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-tintc__section-description {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #A7D9B8; /* Text Secondary */
}

.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: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #2E7A4E; /* Border */
}

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

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

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

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

.page-tintc__news-card-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tintc__news-card-title a:hover {
  color: #57E38D; /* Glow */
}

.page-tintc__news-card-date {
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  display: block;
}

.page-tintc__news-card-excerpt {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1; /* Allow excerpt to take available space */
}

.page-tintc__read-more-button {
  display: inline-block;
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start; /* Align to bottom left of card content */
}

.page-tintc__read-more-button:hover {
  color: #F2FFF6; /* Text Main */
}

.page-tintc__view-all-news {
  text-align: center;
  margin-top: 40px;
}

.page-tintc__why-choose-us-section {
  background-color: #08160F; /* Background */
  padding: 60px 0;
}

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

.page-tintc__feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-tintc__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Make icons circular if desired */
  border: 2px solid #57E38D; /* Glow */
  padding: 10px;
}

.page-tintc__feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6; /* Text Main */
}

.page-tintc__feature-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-tintc__cta-section {
  background-color: #11271B; /* Card BG */
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #2E7A4E; /* Divider */
}

.page-tintc__cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-tintc__cta-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-tintc__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-tintc__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-tintc__btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-tintc__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #57E38D; /* Glow */
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #57E38D; /* Glow */
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-tintc__btn-secondary:hover {
  transform: translateY(-2px);
  color: #F2FFF6; /* Text Main */
  border-color: #F2FFF6; /* Text Main */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-tintc__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-tintc__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-tintc {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-tintc__hero-section {
    padding-bottom: 40px;
  }

  .page-tintc__hero-image {
    max-height: 400px;
  }

  .page-tintc__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    padding: 0 15px;
  }

  .page-tintc__subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .page-tintc__cta-button {
    width: calc(100% - 30px); /* Full width with padding */
    padding: 12px 20px;
    margin: 0 15px;
  }

  .page-tintc__latest-news-section,
  .page-tintc__why-choose-us-section,
  .page-tintc__cta-section {
    padding: 40px 0;
  }

  .page-tintc__container {
    padding: 0 15px;
  }

  .page-tintc__section-title {
    font-size: 1.8rem;
    padding: 0 15px;
  }

  .page-tintc__section-description {
    font-size: 0.95rem;
    padding: 0 15px;
    margin-bottom: 30px;
  }

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

  .page-tintc__news-card-image {
    height: 180px;
  }

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

  .page-tintc__news-card-excerpt {
    font-size: 0.9rem;
  }

  .page-tintc__feature-icon {
    width: 80px;
    height: 80px;
    padding: 8px;
  }

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

  .page-tintc__feature-text {
    font-size: 0.9rem;
  }

  .page-tintc__cta-title {
    font-size: 2rem;
    padding: 0 15px;
  }

  .page-tintc__cta-description {
    font-size: 1rem;
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .page-tintc__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-tintc__btn-primary,
  .page-tintc__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Image responsiveness */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-tintc__section,
  .page-tintc__card,
  .page-tintc__container,
  .page-tintc__news-card,
  .page-tintc__feature-item,
  .page-tintc__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-tintc__hero-section {
    padding-top: 10px !important; /* body already has padding-top for header */
  }
}