.page-tintc {
  color: #F2FFF6; /* Text Main */
  background-color: var(--background-color, #08160F); /* Body background, fallback to custom if shared not loaded */
  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: 10px 0 60px 0; /* 10px top padding as per requirement */
  overflow: hidden;
}

.page-tintc__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.page-tintc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  margin-top: 150px; /* Push content down over image */
}

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

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

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

.page-tintc__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-tintc__section-title {
  font-size: 2.5rem;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 50px;
  margin-top: 80px;
  position: relative;
}

.page-tintc__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-tintc__latest-news-section,
.page-tintc__deep-dive-section,
.page-tintc__promotions-section,
.page-tintc__faq-section,
.page-tintc__cta-section {
  padding: 60px 0;
}

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

.page-tintc__news-card,
.page-tintc__promo-card {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

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

.page-tintc__news-card-title,
.page-tintc__promo-card-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-tintc__news-card-title a,
.page-tintc__promo-card-title a {
  color: #F2FFF6;
  text-decoration: none;
}

.page-tintc__news-card-title a:hover,
.page-tintc__promo-card-title a:hover {
  color: #2AD16F; /* Lighter green for hover */
}

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

.page-tintc__news-card-excerpt,
.page-tintc__promo-card-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-tintc__read-more-link,
.page-tintc__small-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-tintc__read-more-link:hover,
.page-tintc__small-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

.page-tintc__view-all-button {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.page-tintc__deep-dive-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
}

.page-tintc__content-block {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-tintc__content-block p {
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-tintc__content-block strong {
  color: #F2FFF6;
}

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

.page-tintc__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-tintc__list li {
  margin-bottom: 10px;
}

.page-tintc__list li strong {
  color: #F2FFF6;
}

.page-tintc__faq-list {
  margin-top: 40px;
}

.page-tintc__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-tintc__faq-item[open] .page-tintc__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

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

.page-tintc__faq-qtext {
  flex-grow: 1;
  font-weight: bold;
}

.page-tintc__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2AD16F;
  margin-left: 15px;
}

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

.page-tintc__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  background-color: #0A4B2C; /* Deep Green */
}

.page-tintc__faq-answer p {
  margin: 0;
}

.page-tintc__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #11271B; /* Card B G */
}

.page-tintc__cta-text {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-tintc__large-button {
  padding: 20px 45px;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-tintc__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-tintc__hero-content {
    padding: 20px;
    margin-top: 100px; /* Adjust for smaller screens */
  }

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

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

  .page-tintc__cta-button,
  .page-tintc__small-button,
  .page-tintc__large-button,
  .page-tintc__read-more-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px !important;
    text-align: center;
  }

  .page-tintc__view-all-button-wrapper {
    padding: 0 15px;
    box-sizing: border-box;
  }

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

  .page-tintc__news-card,
  .page-tintc__promo-card {
    margin-bottom: 20px;
  }

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

  .page-tintc__section-title {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 40px;
  }

  .page-tintc__sub-title {
    font-size: 1.5rem;
  }

  .page-tintc__content-block,
  .page-tintc__faq-question,
  .page-tintc__faq-answer {
    font-size: 0.95rem;
  }

  /* Ensure all images are responsive */
  .page-tintc img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all image containers are responsive */
  .page-tintc__hero-image-wrapper,
  .page-tintc__news-card,
  .page-tintc__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-tintc__latest-news-section .page-tintc__container,
  .page-tintc__deep-dive-section .page-tintc__container,
  .page-tintc__promotions-section .page-tintc__container,
  .page-tintc__faq-section .page-tintc__container,
  .page-tintc__cta-section .page-tintc__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-tintc__hero-section {
    padding-top: 10px !important;
  }
}