.page-tintc {
  font-family: 'Arial', sans-serif;
  color: #F3F8FF; /* Text Main */
  line-height: 1.6;
  background-color: var(--deep-navy); /* Body background from shared.css */
}

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

.page-tintc__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-tintc__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-tintc__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.page-tintc__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 80px 20px;
  background: rgba(8, 22, 43, 0.7); /* Deep Navy with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-tintc__hero-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 800;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.7);
}

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

.page-tintc__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.page-tintc__btn--primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(17, 68, 166, 0.4);
}

.page-tintc__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 68, 166, 0.6);
}

.page-tintc__btn--secondary {
  background: none;
  border: 2px solid #2B73F6;
  color: #F3F8FF; /* Text Main */
  box-shadow: 0 2px 10px rgba(43, 115, 246, 0.2);
}

.page-tintc__btn--secondary:hover {
  background-color: rgba(43, 115, 246, 0.1);
  transform: translateY(-1px);
}

.page-tintc__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-tintc__btn--text {
  background: none;
  border: none;
  color: #F2C14E; /* Gold */
  padding: 0;
  text-decoration: underline;
  font-weight: 600;
}

.page-tintc__btn--text:hover {
  color: #4FA8FF; /* Glow */
}

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

.page-tintc__news-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #244D84; /* Border */
}

.page-tintc__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-tintc__news-card-content {
  padding: 25px;
}

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

.page-tintc__news-card-title-link:hover {
  color: #F2C14E; /* Gold */
}

.page-tintc__news-card-title-link h3 {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tintc__news-card-date {
  font-size: 0.9em;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-tintc__news-card-description {
  font-size: 1em;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-tintc__category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-tintc__category-btn {
  background-color: #113B7A; /* Main color */
  color: #F3F8FF; /* Text Main */
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid #244D84; /* Border */
}

.page-tintc__category-btn:hover {
  background-color: #1D5FD1; /* Auxiliary color */
  transform: translateY(-2px);
}

.page-tintc__articles-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-tintc__article-item {
  display: flex;
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border */
}

.page-tintc__article-image {
  width: 250px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.page-tintc__article-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-tintc__article-title-link {
  text-decoration: none;
  color: #F3F8FF; /* Text Main */
  transition: color 0.3s ease;
}

.page-tintc__article-title-link:hover {
  color: #F2C14E; /* Gold */
}

.page-tintc__article-title-link h3 {
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.3;
}

.page-tintc__article-date {
  font-size: 0.85em;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 10px;
}

.page-tintc__article-description {
  font-size: 0.95em;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 15px;
}

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

.page-tintc__cta-section {
  text-align: center;
  background-color: #113B7A; /* Main color */
  padding: 80px 20px;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-tintc__cta-section .page-tintc__section-title {
  color: #F2C14E; /* Gold */
}

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

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

.page-tintc__faq-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F3F8FF; /* Text Main */
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  background-color: #113B7A; /* Main color */
  border-bottom: 1px solid #1B3357; /* Divider */
  list-style: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

.page-tintc__faq-item[open] .page-tintc__faq-question {
  border-bottom: 1px solid #1B3357; /* Divider */
}

.page-tintc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E; /* Gold */
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
  transform: rotate(45deg);
}

.page-tintc__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #AFC4E8; /* Text Secondary */
}

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

.page-tintc__faq-answer a {
  color: #4FA8FF; /* Glow */
  text-decoration: underline;
}

.page-tintc__faq-answer a:hover {
  color: #F2C14E; /* Gold */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-tintc {
    font-size: 15px;
  }

  .page-tintc__section {
    padding: 40px 15px;
  }

  .page-tintc__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-tintc__hero-content {
    padding: 60px 15px;
  }

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

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

  .page-tintc__btn {
    padding: 12px 20px;
    font-size: 0.9em;
  }

  /* Mobile image responsiveness */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-tintc__hero-image {
    height: 100% !important;
  }

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

  .page-tintc__article-image {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
  }

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

  .page-tintc__article-item {
    flex-direction: column;
  }

  .page-tintc__article-content {
    padding: 15px;
  }

  .page-tintc__category-list {
    flex-direction: column;
    gap: 10px;
  }

  .page-tintc__category-btn {
    width: 100%;
    text-align: center;
  }

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

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

  /* Button responsive styles */
  .page-tintc__btn,
  .page-tintc__btn--primary,
  .page-tintc__btn--secondary,
  .page-tintc a[class*="button"],
  .page-tintc a[class*="btn"] {
    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__hero-content .page-tintc__btn {
    max-width: 300px !important;
    width: 100% !important;
    margin: 0 auto;
  }

  .page-tintc__view-all-btn-container .page-tintc__btn {
    max-width: 300px !important;
    width: 100% !important;
    margin: 0 auto;
  }

  .page-tintc__cta-section .page-tintc__btn {
    max-width: 300px !important;
    width: 100% !important;
    margin: 0 auto;
  }

  /* Container responsive styles */
  .page-tintc__hero-section,
  .page-tintc__section,
  .page-tintc__news-grid,
  .page-tintc__news-card,
  .page-tintc__category-list,
  .page-tintc__articles-container,
  .page-tintc__article-item,
  .page-tintc__cta-section,
  .page-tintc__faq-section,
  .page-tintc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Padding already handled by section/item specific rules */
  }

  .page-tintc__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-tintc__article-image {
    width: 100%; /* Full width on mobile */
    height: auto; /* Maintain aspect ratio */
  }
}