/* style/tintc.css */
.page-tintc {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light body background */
    background: #ffffff; /* Explicitly set body background for clarity, though shared might handle it */
    line-height: 1.6;
    font-size: 16px;
}

.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: linear-gradient(135deg, #26A9E0, #4AD8FF); /* Brand color gradient for hero section background */
    color: #ffffff; /* White text for dark background */
    border-bottom: 5px solid #1E8BC3;
}

.page-tintc__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width within max-width */
}

.page-tintc__hero-image {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.page-tintc__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-tintc__hero-image img:hover {
    transform: scale(1.02);
}

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

.page-tintc__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* Clamp for responsive H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-tintc__intro-text {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #f0f8ff;
}

.page-tintc__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #EA7C07; /* Login color for CTA */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-tintc__cta-button:hover {
    background: #FF8C00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-tintc__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #EA7C07;
    border-radius: 2px;
}

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

.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: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-tintc__news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-tintc__news-card img {
    width: 100%;
    height: 220px; /* Fixed height for consistent card appearance */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #eeeeee;
}

.page-tintc__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-tintc__card-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-tintc__card-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tintc__card-title a:hover {
    color: #26A9E0;
}

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

.page-tintc__card-excerpt {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-tintc__read-more {
    display: inline-block;
    color: #26A9E0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-tintc__read-more:hover {
    color: #1E8BC3;
    text-decoration: underline;
}

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

.page-tintc__view-all-news-button {
    background: #26A9E0; /* Brand color for view all button */
}

.page-tintc__view-all-news-button:hover {
    background: #1E8BC3;
}

.page-tintc__featured-article {
    background: #f8f9fa; /* Light background for featured section */
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.page-tintc__featured-card {
    display: flex;
    gap: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 30px;
    align-items: center;
}

.page-tintc__featured-card img {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.page-tintc__featured-content {
    flex-grow: 1;
}

.page-tintc__featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-tintc__featured-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-tintc__featured-title a:hover {
    color: #26A9E0;
}

.page-tintc__featured-date {
    font-size: 1rem;
    color: #777777;
    margin-bottom: 15px;
}

.page-tintc__featured-excerpt {
    font-size: 1.05rem;
    color: #555555;
    margin-bottom: 25px;
}

.page-tintc__why-f1686 {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-tintc__benefit-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tintc__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-tintc__benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 15px;
    text-align: center;
}

.page-tintc__benefit-item p {
    font-size: 1rem;
    color: #555555;
    text-align: center;
}

/* FAQ Section Styles (details + summary) */
details.page-tintc__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
details.page-tintc__faq-item summary.page-tintc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none; /* Hide default marker */
  transition: background-color 0.3s ease;
  background: #fdfdfd;
}
details.page-tintc__faq-item summary.page-tintc__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit browsers */
}
details.page-tintc__faq-item summary.page-tintc__faq-question:hover {
  background: #f5f5f5;
}
.page-tintc__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-tintc__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #26A9E0; /* Brand color for toggle icon */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}
details.page-tintc__faq-item[open] .page-tintc__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' effect */
    color: #EA7C07; /* Login color when open */
}
details.page-tintc__faq-item .page-tintc__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  font-size: 1rem;
  color: #555555;
}
.page-tintc__faq-answer p {
    margin-bottom: 0;
}

/* CTA Section at bottom */
.page-tintc__cta-section {
    background: #26A9E0; /* Brand color background */
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    border-radius: 12px;
    margin: 60px auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-tintc__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-tintc__cta-description {
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #f0f8ff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-tintc__featured-card {
        flex-direction: column;
        padding: 20px;
    }
    .page-tintc__featured-card img {
        width: 100%;
        margin-bottom: 20px;
    }
    .page-tintc__hero-section {
        padding: 40px 15px;
    }
    .page-tintc__hero-image {
        margin-bottom: 20px;
    }
    .page-tintc__main-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    .page-tintc__intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-tintc__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-tintc__content-area {
        padding: 40px 15px;
    }
    .page-tintc__section-title {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    }
    .page-tintc__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .page-tintc__news-grid {
        gap: 20px;
    }
    .page-tintc__news-card img {
        
    }
    .page-tintc__card-content {
        padding: 20px;
    }
    .page-tintc__card-title {
        font-size: 1.2rem;
    }
    .page-tintc__featured-title {
        font-size: 1.5rem;
    }
    .page-tintc__cta-section {
        padding: 60px 15px;
        margin: 40px auto;
    }
    .page-tintc__cta-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }
    .page-tintc__cta-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-tintc {
        font-size: 15px;
        line-height: 1.55;
    }
    .page-tintc__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 30px;
    }
    .page-tintc__hero-image {
        border-radius: 8px;
    }
    .page-tintc__hero-image img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-tintc__content-area {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-tintc__section-title {
        font-size: 1.8rem;
    }
    .page-tintc__news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-tintc__news-card img {
        height: 200px;
    }
    .page-tintc__featured-card {
        padding: 15px;
    }
    .page-tintc__featured-title {
        font-size: 1.4rem;
    }
    .page-tintc__faq-qtext {
        font-size: 1rem;
    }
    details.page-tintc__faq-item summary.page-tintc__faq-question {
        padding: 15px;
    }
    .page-tintc__faq-answer {
        padding: 0 15px 15px;
    }
    .page-tintc__cta-section {
        padding: 40px 15px;
        margin: 30px auto;
        border-radius: 8px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-tintc__cta-title {
        font-size: 1.6rem;
    }
    .page-tintc__cta-description {
        font-size: 0.95rem;
    }

    /* Mobile button adaptation */
    .page-tintc__cta-button,
    .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__cta-buttons,
    .page-tintc__button-group,
    .page-tintc__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
    }

    .page-tintc__cta-buttons {
      display: flex;
      flex-direction: column;
    }

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

/* Ensure no filter on images */
.page-tintc img {
    filter: none !important;
}

/* Color contrast adjustments for specific elements if needed */
.page-tintc__dark-bg { /* Example for dark background sections */
  color: #ffffff; /* Deep contrast */
  background: #26A9E0;
}
.page-tintc__light-bg { /* Example for light background sections */
  color: #333333; /* Deep contrast */
  background: #ffffff;
}