body {
  background-color: #0A0A0A; /* Body background color */
  color: #FFF6D6; /* Main text color */
}

.page-tintc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Ensure all page content uses the main text color */
}

.page-tintc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A0A0A;
}

.page-tintc__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-tintc__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

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

.page-tintc__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-tintc__main-title {
  color: #FFD36B; /* Use auxiliary color for prominent titles */
  margin-top: 0;
  margin-bottom: 20px;
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-tintc__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-tintc__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff; /* White text on gradient button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-tintc__cta-button:hover {
  background: linear-gradient(180deg, #FFE080 0%, #E6B020 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-tintc__section-title {
  color: #FFD36B;
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-tintc__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

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

.page-tintc__news-section {
  background-color: #0A0A0A;
  padding: 60px 0;
}

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

.page-tintc__news-card {
  background-color: #111111; /* Card background color */
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  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 8px 20px rgba(0, 0, 0, 0.3);
}

.page-tintc__news-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-tintc__news-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  color: #FFF6D6; /* Card content text color */
}

.page-tintc__news-title {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  color: #FFD36B;
  line-height: 1.3;
}

.page-tintc__news-excerpt {
  font-size: 0.95em;
  color: #FFF6D6;
  flex-grow: 1;
  margin-bottom: 15px;
}

.page-tintc__news-date {
  font-size: 0.85em;
  color: #F2C14E; /* Use primary color for date */
  text-align: right;
}

.page-tintc__view-all-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-tintc__view-all-button {
  display: inline-block;
  padding: 12px 30px;
  background: #F2C14E; /* Primary color for view all button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-tintc__view-all-button:hover {
  background-color: #FFD36B; /* Auxiliary color on hover */
  transform: translateY(-2px);
}

.page-tintc__cta-section {
  background-color: #0A0A0A;
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #3A2A12;
}

.page-tintc__cta-title {
  color: #FFD36B;
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-tintc__cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

.page-tintc__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
  margin-top: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-tintc__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-tintc__hero-image img {
    border-radius: 4px;
  }

  .page-tintc__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-tintc__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    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;
  }

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

  .page-tintc__section-description {
    font-size: 1em;
  }

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

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

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

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

  .page-tintc__cta-section {
    padding: 60px 15px;
  }

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

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

  .page-tintc__cta-button--large {
    padding: 15px 40px;
    font-size: 18px;
  }

  /* General mobile image and container adaptation */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-tintc__container,
  .page-tintc__news-card,
  .page-tintc__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-tintc__view-all-button {
    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;
  }
}