.page-tintc {
  color: #F3F8FF; /* Main text color on dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

/* Hero Section */
.page-tintc__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, assuming body has header offset */
  padding-bottom: 40px;
  overflow: hidden;
  background: linear-gradient(180deg, #113B7A 0%, #08162B 100%);
}

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

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

.page-tintc__hero-content {
  text-align: center;
  max-width: 800px;
  margin-top: 30px;
  padding: 0 20px;
}

.page-tintc__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

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

.page-tintc__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
  color: #F3F8FF;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

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

/* Section Titles */
.page-tintc__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 25px;
  padding-top: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-tintc__section-intro {
  font-size: 1.1rem;
  color: #AFC4E8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

/* News Grid */
.page-tintc__news-grid, .page-tintc__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

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

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

.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;
}

.page-tintc__news-card-title, .page-tintc__promo-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tintc__news-card-title a, .page-tintc__promo-card-title a {
  color: #F3F8FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-tintc__news-card-title a:hover, .page-tintc__promo-card-title a:hover {
  color: #4FA8FF; /* Glow color on hover */
}

.page-tintc__news-card-date, .page-tintc__promo-card-date {
  font-size: 0.9rem;
  color: #AFC4E8;
  margin-bottom: 15px;
}

.page-tintc__news-card-excerpt, .page-tintc__promo-card-excerpt {
  font-size: 1rem;
  color: #AFC4E8;
  margin-bottom: 20px;
}

.page-tintc__read-more-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1D5FD1;
  color: #F3F8FF;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.page-tintc__read-more-button:hover {
  background-color: #2B73F6;
}

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

.page-tintc__view-all-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-tintc__view-all-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Platform Updates Section */
.page-tintc__platform-updates-section {
  background-color: #08162B;
  padding-bottom: 50px;
}

.page-tintc__update-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-tintc__update-item {
  display: flex;
  gap: 30px;
  background-color: #10233F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #244D84;
}

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

.page-tintc__update-content {
  padding: 30px;
  width: 60%;
}

.page-tintc__update-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #F3F8FF;
  margin-bottom: 10px;
}

.page-tintc__update-date {
  font-size: 0.95rem;
  color: #AFC4E8;
  margin-bottom: 15px;
}

.page-tintc__update-text {
  font-size: 1rem;
  color: #AFC4E8;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-tintc__faq-section {
  padding-bottom: 80px;
}

.page-tintc__faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-tintc__faq-item {
  background-color: #10233F;
  border: 1px solid #244D84;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #F3F8FF;
}

.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #1B3357; /* Divider color for summary background */
  color: #F3F8FF;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-tintc__faq-item[open] .page-tintc__faq-question {
  background-color: #113B7A;
}

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

.page-tintc__faq-question:hover {
  background-color: #1D5FD1;
}

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

.page-tintc__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 15px;
  line-height: 1;
}

.page-tintc__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #AFC4E8;
  border-top: 1px solid #244D84;
}

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

/* Media Queries for Responsiveness */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-tintc__container {
    padding: 30px 15px;
  }

  .page-tintc__main-title {
    font-size: 3rem;
  }

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

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

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

  .page-tintc__news-card-title, .page-tintc__promo-card-title {
    font-size: 1.3rem;
  }

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

  .page-tintc__update-image {
    width: 100%;
    height: 250px;
  }

  .page-tintc__update-content {
    width: 100%;
    padding: 20px;
  }

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

  .page-tintc__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .page-tintc__faq-answer {
    padding: 15px 20px;
  }
}

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

  .page-tintc__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 30px;
  }

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

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

  .page-tintc__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-tintc__main-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .page-tintc__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  /* Buttons in Hero section */
  .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: 12px 20px;
    font-size: 1rem;
  }

  .page-tintc__container {
    padding: 20px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  .page-tintc__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-top: 20px;
  }

  .page-tintc__section-intro {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  /* News Grid (product display) */
  .page-tintc__news-grid, .page-tintc__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  .page-tintc__news-card, .page-tintc__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-tintc__news-card-image, .page-tintc__promo-card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: 180px !important; /* Adjust height for mobile cards */
    object-fit: cover;
  }

  .page-tintc__news-card-content, .page-tintc__promo-card-content {
    padding: 15px;
  }

  .page-tintc__news-card-title, .page-tintc__promo-card-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .page-tintc__news-card-date, .page-tintc__promo-card-date {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .page-tintc__news-card-excerpt, .page-tintc__promo-card-excerpt {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  /* Read more button */
  .page-tintc__read-more-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 15px;
    font-size: 0.9rem;
    text-align: center;
  }

  /* View all button */
  .page-tintc__view-all-button-container {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .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: 12px 20px;
    font-size: 1rem;
  }

  /* Platform Updates */
  .page-tintc__platform-updates-section {
    padding-bottom: 30px;
  }

  .page-tintc__update-list {
    gap: 30px;
  }

  .page-tintc__update-item {
    flex-direction: column;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-tintc__update-image {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover;
    max-width: 100% !important;
  }

  .page-tintc__update-content {
    width: 100% !important;
    padding: 15px;
  }

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

  .page-tintc__update-date {
    font-size: 0.85rem;
  }

  .page-tintc__update-text {
    font-size: 0.95rem;
  }

  /* FAQ */
  .page-tintc__faq-section {
    padding-bottom: 40px;
  }

  .page-tintc__faq-list {
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-tintc__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-tintc__faq-question {
    font-size: 1rem;
    padding: 12px 18px;
  }

  .page-tintc__faq-answer {
    padding: 15px 18px;
    font-size: 0.95rem;
  }

  /* Generic image responsiveness for all img tags within .page-tintc */
  .page-tintc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
}