:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg-color: #11271B;
    --bg-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-tintc {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Default text color, adjusted for dark background */
    background-color: var(--bg-color); /* Default background color from shared */
}

.page-tintc a {
    color: var(--glow-color); /* #57E38D */
    text-decoration: none;
}
.page-tintc a:hover {
    text-decoration: underline;
}

.page-tintc__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    padding-bottom: 60px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--bg-color); /* #08160F */
    overflow: hidden;
}

.page-tintc__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for hero image */
    margin-bottom: 30px;
}

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

.page-tintc__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-tintc__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: bold;
    color: var(--text-main); /* #F2FFF6 */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-tintc__description {
    font-size: 1.1rem;
    color: var(--text-secondary); /* #A7D9B8 */
    margin-bottom: 30px;
}

.page-tintc__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: var(--btn-gradient);
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-tintc__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-tintc__latest-news-section,
.page-tintc__featured-articles-section,
.page-tintc__faq-section,
.page-tintc__cta-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-color); /* #08160F */
    border-bottom: 1px solid var(--divider-color); /* #1E3A2A */
}

.page-tintc__cta-section {
    border-bottom: none; /* Remove bottom border for CTA section */
}

.page-tintc__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-color); /* #F2C14E */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

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

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

.page-tintc__news-image-wrapper,
.page-tintc__article-image-wrapper {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    overflow: hidden;
}

.page-tintc__news-image,
.page-tintc__article-image {
    width: 100%;
    height: 100%;
    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.4rem;
    color: var(--text-main); /* #F2FFF6 */
    margin-bottom: 10px;
    line-height: 1.3;
    flex-grow: 1;
}

.page-tintc__news-title a,
.page-tintc__article-title a {
    color: var(--text-main); /* #F2FFF6 */
    text-decoration: none;
}

.page-tintc__news-title a:hover,
.page-tintc__article-title a:hover {
    color: var(--glow-color); /* #57E38D */
    text-decoration: underline;
}

.page-tintc__news-meta,
.page-tintc__article-meta {
    font-size: 0.9rem;
    color: var(--text-secondary); /* #A7D9B8 */
    margin-bottom: 15px;
}

.page-tintc__news-excerpt,
.page-tintc__article-excerpt {
    font-size: 1rem;
    color: var(--text-secondary); /* #A7D9B8 */
    margin-bottom: 20px;
}

.page-tintc__read-more {
    color: var(--glow-color); /* #57E38D */
    font-weight: bold;
    text-decoration: none;
    align-self: flex-start;
    margin-top: auto;
}

.page-tintc__read-more:hover {
    text-decoration: underline;
}

.page-tintc__view-all-wrapper {
    text-align: center;
}

.page-tintc__view-all-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: var(--btn-gradient);
    color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-tintc__view-all-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

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

.page-tintc__faq-item {
    background-color: var(--card-bg-color); /* #11271B */
    border-radius: 10px;
    border: 1px solid var(--border-color); /* #2E7A4E */
    overflow: hidden;
}

.page-tintc__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main); /* #F2FFF6 */
    list-style: none; /* Hide default marker */
    position: relative;
}

.page-tintc__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

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

.page-tintc__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: var(--glow-color); /* #57E38D */
}

.page-tintc__faq-item[open] .page-tintc__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or simply '-' */
}

.page-tintc__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary); /* #A7D9B8 */
}

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

/* CTA Section */
.page-tintc__cta-section {
    text-align: center;
    background-color: var(--deep-green-color); /* #0A4B2C */
    padding: 80px 20px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.page-tintc__cta-section .page-tintc__section-title {
    color: var(--text-main); /* #F2FFF6 */
}

.page-tintc__cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary); /* #A7D9B8 */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
}

.page-tintc__btn-primary {
    background: var(--btn-gradient);
    color: #ffffff;
    border: none;
}

.page-tintc__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-tintc__btn-secondary {
    background: transparent;
    color: var(--glow-color); /* #57E38D */
    border: 2px solid var(--glow-color); /* #57E38D */
}

.page-tintc__btn-secondary:hover {
    background-color: var(--glow-color); /* #57E38D */
    color: var(--deep-green-color); /* #0A4B2C */
}

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

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

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

    .page-tintc__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .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__latest-news-section,
    .page-tintc__featured-articles-section,
    .page-tintc__faq-section,
    .page-tintc__cta-section {
        padding: 40px 15px; /* Adjust padding for mobile */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    .page-tintc__news-grid,
    .page-tintc__articles-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

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

    .page-tintc__news-image-wrapper,
    .page-tintc__article-image-wrapper {
        height: 180px; /* Smaller fixed height for mobile cards */
    }

    .page-tintc__news-image,
    .page-tintc__article-image,
    .page-tintc__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-tintc__news-title,
    .page-tintc__article-title {
        font-size: 1.2rem;
    }

    .page-tintc__news-content,
    .page-tintc__article-content {
        padding: 20px;
    }

    .page-tintc__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

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

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

    .page-tintc__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-tintc__btn-primary,
    .page-tintc__btn-secondary {
        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;
    }
}