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

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

/* Hero Section */
.page-tintc__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding as body padding-top is handled by shared */
    padding-bottom: 60px;
    background-color: #08160F;
    overflow: hidden;
}

.page-tintc__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: block; /* Ensure it behaves as a block element */
}

.page-tintc__main-title {
    font-size: 3.2em;
    font-weight: bold;
    color: #F2FFF6;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-tintc__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.6;
}

.page-tintc__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

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

/* Section Titles */
.page-tintc__section-title {
    font-size: 2.5em;
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-tintc__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #2AD16F; /* A bright part of the button gradient */
    border-radius: 2px;
}

/* Featured News Section */
.page-tintc__featured-news-section, .page-tintc__latest-news-section, .page-tintc__about-news-section, .page-tintc__faq-section, .page-tintc__cta-section {
    padding: 80px 0;
    background-color: #08160F;
}

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

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

.page-tintc__news-card:hover {
    transform: translateY(-5px);
}

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

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

.page-tintc__news-title {
    font-size: 1.4em;
    color: #F2FFF6;
    margin-bottom: 10px;
    line-height: 1.4;
    flex-grow: 1;
}

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

.page-tintc__news-title a:hover {
    color: #2AD16F;
}

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

.page-tintc__news-excerpt {
    font-size: 1em;
    color: #A7D9B8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.page-tintc__read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2E7A4E; /* Border color as background for subtle button */
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-tintc__read-more:hover {
    background-color: #13994A;
}

/* Latest News Section */
.page-tintc__news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.page-tintc__list-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.page-tintc__list-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.page-tintc__list-title {
    font-size: 1.2em;
    color: #F2FFF6;
    margin-bottom: 8px;
    line-height: 1.3;
}

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

.page-tintc__list-title a:hover {
    color: #2AD16F;
}

.page-tintc__list-meta {
    font-size: 0.85em;
    color: #A7D9B8;
    margin-bottom: 10px;
}

.page-tintc__list-excerpt {
    font-size: 0.95em;
    color: #A7D9B8;
    line-height: 1.5;
}

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

/* About News Section */
.page-tintc__text-block {
    font-size: 1.1em;
    color: #A7D9B8;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* FAQ Section */
.page-tintc__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-tintc__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-tintc__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #2AD16F;
    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;
    font-size: 1em;
    color: #A7D9B8;
    line-height: 1.6;
}

/* CTA Section */
.page-tintc__cta-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-tintc__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

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

.page-tintc__btn-secondary {
    background-color: transparent;
    border: 2px solid #2AD16F; /* Border color */
    color: #2AD16F;
}

.page-tintc__btn-secondary:hover {
    background-color: #2AD16F;
    color: #ffffff;
    transform: translateY(-2px);
}

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

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
    .page-tintc__main-title {
        font-size: 2.8em;
    }

    .page-tintc__section-title {
        font-size: 2.2em;
    }

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

    .page-tintc__news-card {
        margin: 0 15px;
    }

    .page-tintc__list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .page-tintc__list-image {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        height: auto;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-tintc__hero-section {
        padding-top: 10px !important; /* HERO top padding */
        padding-bottom: 40px;
    }
    .page-tintc__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-tintc__description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-tintc__hero-image {
        margin-top: 20px;
    }

    /* 产品展示图区域 (Not applicable for this page, but included as per checklist if it were here) */
    /* .page-tintc__products-section, .page-tintc__products-grid { ... } */

    /* 通用图片与容器 */
    .page-tintc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-tintc__container,
    .page-tintc__hero-section,
    .page-tintc__featured-news-section,
    .page-tintc__latest-news-section,
    .page-tintc__about-news-section,
    .page-tintc__faq-section,
    .page-tintc__cta-section,
    .page-tintc__news-card,
    .page-tintc__list-item,
    .page-tintc__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    .page-tintc__news-grid, .page-tintc__news-list {
        padding-left: 0;
        padding-right: 0;
    }

    /* 按钮与按钮容器 */
    .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;
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-tintc__button-group {
        flex-direction: column !important;
        gap: 15px;
        margin-top: 30px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden;
    }

    /* 其他内容模块 */
    .page-tintc__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-tintc__featured-news-section, .page-tintc__latest-news-section, .page-tintc__about-news-section, .page-tintc__faq-section, .page-tintc__cta-section {
        padding: 40px 0;
    }
    .page-tintc__news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-tintc__news-card {
        margin: 0;
    }
    .page-tintc__news-image {
        height: 200px;
    }
    .page-tintc__news-content {
        padding: 20px;
    }
    .page-tintc__news-title {
        font-size: 1.2em;
    }
    .page-tintc__list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }
    .page-tintc__list-image {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        height: auto;
        max-width: 250px;
    }
    .page-tintc__list-title {
        font-size: 1.1em;
    }
    .page-tintc__text-block {
        font-size: 1em;
    }
    .page-tintc__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-tintc__faq-answer {
        padding: 0 20px 15px;
    }
}