.page-tintc {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for assumed light body background */
  background-color: #ffffff;
}

.page-tintc__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
  padding-bottom: 40px;
  text-align: center;
  background-color: #f5f5f5;
  overflow: hidden;
}

.page-tintc__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

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

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

.page-tintc__main-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-tintc__hero-description {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 30px;
}

.page-tintc__section {
  padding: 60px 0;
}

.page-tintc__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-tintc__dark-section .page-tintc__section-title,
.page-tintc__dark-section .page-tintc__section-description,
.page-tintc__dark-section .page-tintc__sub-section-title,
.page-tintc__dark-section .page-tintc__paragraph {
  color: #ffffff;
}

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

.page-tintc__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-tintc__dark-section .page-tintc__section-title {
    color: #ffffff;
}

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

.page-tintc__dark-section .page-tintc__section-description {
    color: #f0f0f0;
}

.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: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.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.3rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tintc__news-card-title a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-tintc__news-card-title a:hover {
  color: #1a7bbd;
}

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

.page-tintc__news-card-date {
  font-size: 0.85rem;
  color: #999999;
  display: block;
  text-align: right;
}

.page-tintc__button-group {
    text-align: center;
}

.page-tintc__btn-primary,
.page-tintc__btn-secondary,
.page-tintc__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-tintc__btn-primary,
.page-tintc__cta-button {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-tintc__btn-primary:hover,
.page-tintc__cta-button:hover {
  background-color: #1a7bbd;
  border-color: #1a7bbd;
}

.page-tintc__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-tintc__dark-section .page-tintc__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border-color: #ffffff;
}

.page-tintc__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a7bbd;
  border-color: #1a7bbd;
}

.page-tintc__dark-section .page-tintc__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #26A9E0;
    border-color: #f0f0f0;
}

.page-tintc__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-tintc__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-tintc__text-content,
.page-tintc__image-content {
  flex: 1;
}

.page-tintc__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.page-tintc__sub-section-title {
  font-size: 1.7rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-tintc__dark-section .page-tintc__sub-section-title {
    color: #ffffff;
}

.page-tintc__paragraph {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
}

.page-tintc__dark-section .page-tintc__paragraph {
    color: #f0f0f0;
}

.page-tintc__faq-section {
  background-color: #f9f9f9;
}

.page-tintc__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-tintc__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-tintc__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  outline: none;
}

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

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-tintc__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

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

.page-tintc__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
}

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

.page-tintc__faq-answer a {
    color: #26A9E0;
    text-decoration: none;
}

.page-tintc__faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
  .page-tintc__hero-image-wrapper {
    max-height: 400px;
  }
  .page-tintc__main-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
  }
  .page-tintc__news-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .page-tintc__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-tintc__content-wrapper--reversed {
    flex-direction: column;
  }
  .page-tintc__text-content, .page-tintc__image-content {
    flex: none;
    width: 100%;
  }
  .page-tintc__sub-section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-tintc {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-tintc__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }
  .page-tintc__hero-image-wrapper {
    max-height: 250px;
  }
  .page-tintc__hero-content {
    padding: 0 15px;
  }
  .page-tintc__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }
  .page-tintc__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-tintc__section {
    padding: 40px 0;
  }
  .page-tintc__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-tintc__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 15px;
  }
  .page-tintc__section-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .page-tintc__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-tintc__news-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  .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;
  }
  /* Universal image responsive styles */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-tintc__content-image {
    height: auto;
  }
  /* Button responsive styles */
  .page-tintc__btn-primary,
  .page-tintc__btn-secondary,
  .page-tintc__cta-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;
  }
  .page-tintc__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .page-tintc__content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .page-tintc__content-wrapper--reversed {
    flex-direction: column;
  }
  .page-tintc__sub-section-title {
    font-size: 1.3rem;
  }
  .page-tintc__paragraph {
    font-size: 0.95rem;
  }
  .page-tintc__faq-item summary {
    font-size: 1rem;
    padding: 15px;
  }
  .page-tintc__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 0.95rem;
  }
  .page-tintc__faq-toggle {
    font-size: 1.2rem;
  }
}