.page-tintc {
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-tintc__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

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

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

.page-tintc__main-title {
    font-size: clamp(2em, 5vw, 3.2em);
    font-weight: bold;
    color: #F2FFF6;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.page-tintc__btn-primary:hover {
    opacity: 0.9;
}

.page-tintc__section-title {
    font-size: 2.5em;
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.page-tintc__section-intro {
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: center;
    color: #A7D9B8;
    font-size: 1.05em;
    padding: 0 20px;
}

.page-tintc__latest-news-section,
.page-tintc__detailed-news-block,
.page-tintc__featured-news-section,
.page-tintc__faq-section,
.page-tintc__cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

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

.page-tintc__news-card,
.page-tintc__article-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-tintc__news-card:hover,
.page-tintc__article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-tintc__news-thumbnail,
.page-tintc__article-image {
    width: 100%;
    height: 225px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

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

.page-tintc__news-title,
.page-tintc__article-title {
    font-size: 1.4em;
    color: #F2FFF6;
    margin-bottom: 10px;
    line-height: 1.3;
}

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

.page-tintc__news-title a:hover,
.page-tintc__article-title a:hover {
    color: #22C768;
}

.page-tintc__news-meta,
.page-tintc__article-meta {
    font-size: 0.9em;
    color: #A7D9B8;
    margin-bottom: 15px;
}

.page-tintc__news-excerpt,
.page-tintc__article-excerpt {
    font-size: 1em;
    color: #A7D9B8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-tintc__read-more-link {
    color: #22C768;
    text-decoration: none;
    font-weight: bold;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.page-tintc__read-more-link:hover {
    text-decoration: underline;
    color: #57E38D;
}

.page-tintc__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-tintc__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: #22C768;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    border: 2px solid #22C768;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.page-tintc__btn-secondary:hover {
    background-color: #22C768;
    color: #F2FFF6;
}

.page-tintc__featured-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
    background-color: #11271B;
    border-radius: 12px;
    padding: 30px;
}

.page-tintc__featured-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.page-tintc__featured-text {
    width: 50%;
}

.page-tintc__featured-title {
    font-size: 1.8em;
    color: #F2FFF6;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-tintc__featured-title a {
    color: #F2FFF6;
    text-decoration: none;
}

.page-tintc__featured-title a:hover {
    color: #22C768;
}

.page-tintc__featured-meta {
    font-size: 0.9em;
    color: #A7D9B8;
    margin-bottom: 20px;
}

.page-tintc__featured-excerpt {
    font-size: 1em;
    color: #A7D9B8;
    margin-bottom: 30px;
}

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

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

.page-tintc__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6;
    cursor: pointer;
    list-style: none;
    position: relative;
}

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

.page-tintc__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-tintc__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #22C768;
    transition: transform 0.3s ease;
}

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

.page-tintc__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: #A7D9B8;
    line-height: 1.7;
}

.page-tintc__cta-section {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 60px;
}

.page-tintc__cta-title {
    font-size: 2.8em;
    color: #F2FFF6;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-tintc__cta-description {
    font-size: 1.1em;
    color: #A7D9B8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-tintc__cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-tintc__featured-content {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .page-tintc__featured-image,
    .page-tintc__featured-text {
        width: 100%;
    }

    .page-tintc__featured-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-tintc__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

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

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

    .page-tintc__cta-title {
        font-size: 2em;
    }

    .page-tintc__cta-section {
        padding: 40px 20px;
    }

    /* Mobile image responsiveness */
    .page-tintc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-tintc__hero-image-wrapper,
    .page-tintc__news-card,
    .page-tintc__article-item,
    .page-tintc__featured-content,
    .page-tintc__cta-section,
    .page-tintc__latest-news-section,
    .page-tintc__detailed-news-block,
    .page-tintc__featured-news-section,
    .page-tintc__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Mobile button responsiveness */
    .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__cta-buttons-group {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        flex-wrap: wrap !important;
        gap: 15px;
        flex-direction: column; /* Stack buttons vertically on mobile */
    }

    .page-tintc__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-tintc__faq-answer {
        padding: 0 20px 15px 20px;
    }
    .page-tintc__hero-section {
        padding-bottom: 40px;
    }
}