.page-tintc {
    font-family: 'Arial', sans-serif;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-tintc__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 40px;
    background-color: #F4F7FB; /* Background */
}

.page-tintc__hero-image-container {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

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

.page-tintc__hero-content {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    margin: -80px auto 0 auto; /* Pulls content slightly over the image */
    max-width: 900px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.page-tintc__main-title {
    font-size: clamp(2em, 3.5vw, 2.8em);
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-tintc__hero-description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-tintc__btn-primary,
.page-tintc__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.page-tintc__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-tintc__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-tintc__btn-secondary {
    background: #ffffff;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
}

.page-tintc__btn-secondary:hover {
    background: #F4F7FB;
    color: #2F6BFF;
    border-color: #6FA3FF;
}

/* General Section Styling */
.page-tintc__content-section,
.page-tintc__latest-news,
.page-tintc__faq-section,
.page-tintc__cta-bottom {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background */
}

.page-tintc__section-title {
    font-size: 2.2em;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-tintc__section-description {
    font-size: 1.05em;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-tintc__category-card {
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-decoration: none;
    color: #1F2D3D; /* Text Main */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-tintc__category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-tintc__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-tintc__category-title {
    font-size: 1.4em;
    color: #2F6BFF;
    margin: 15px 20px 10px 20px;
    font-weight: bold;
}

.page-tintc__category-excerpt {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
    padding: 0 20px 20px 20px;
    flex-grow: 1;
}

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

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

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

.page-tintc__news-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

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

.page-tintc__news-date {
    font-size: 0.9em;
    color: #6FA3FF;
    margin-bottom: 10px;
    display: block;
}

.page-tintc__news-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.page-tintc__news-title a {
    color: #000000; /* Custom Color_1776249996415 */
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-tintc__news-excerpt {
    font-size: 0.95em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
}

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

.page-tintc__read-more:hover {
    color: #6FA3FF;
    text-decoration: underline;
}

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

/* FAQ Section */
.page-tintc__faq-section {
    background-color: #F4F7FB; /* Background */
}

.page-tintc__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-tintc__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    cursor: pointer;
    list-style: none;
    position: relative;
}

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

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

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

.page-tintc__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
    line-height: 1.7;
}

/* CTA Bottom Section */
.page-tintc__cta-bottom {
    background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%);
    padding: 80px 0;
    text-align: center;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
}

.page-tintc__cta-bottom-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-tintc__cta-bottom-title {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-tintc__cta-bottom-description {
    font-size: 1.1em;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.page-tintc__cta-bottom-buttons .page-tintc__btn-primary {
    background: #ffffff;
    color: #2F6BFF;
    border: 2px solid transparent;
}

.page-tintc__cta-bottom-buttons .page-tintc__btn-primary:hover {
    background: #f0f0f0;
    color: #2F6BFF;
}

.page-tintc__cta-bottom-buttons .page-tintc__btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-tintc__cta-bottom-buttons .page-tintc__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .page-tintc__hero-content {
        margin-top: -60px;
        padding: 30px 20px;
    }

    .page-tintc__main-title {
        font-size: clamp(1.8em, 4vw, 2.5em);
    }

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

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

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

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-tintc__hero-section {
        padding-top: 10px !important; /* 强制小顶距 */
        margin-bottom: 30px;
    }

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

    .page-tintc__hero-content {
        margin-top: -40px;
        padding: 25px 15px;
        max-width: calc(100% - 30px); /* Adjust for padding */
        margin-left: 15px;
        margin-right: 15px;
    }

    .page-tintc__main-title {
        font-size: 1.8em !important;
        margin-bottom: 10px;
    }

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

    .page-tintc__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    /* 通用图片与容器 */
    .page-tintc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    
    .page-tintc__container,
    .page-tintc__hero-section,
    .page-tintc__content-section,
    .page-tintc__latest-news,
    .page-tintc__faq-section,
    .page-tintc__cta-bottom {
        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,
    .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,
    .page-tintc__cta-bottom-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column; /* 确保垂直排列 */
    }

    /* 其他内容模块 */
    .page-tintc__section-title {
        font-size: 1.6em !important;
        margin-bottom: 15px;
    }

    .page-tintc__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-tintc__categories-grid,
    .page-tintc__news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .page-tintc__category-card,
    .page-tintc__news-card {
        margin-bottom: 15px;
    }

    .page-tintc__category-image {
        height: 180px;
    }

    .page-tintc__category-title {
        font-size: 1.2em;
    }

    .page-tintc__news-image {
        height: 200px;
    }

    .page-tintc__news-title {
        font-size: 1.1em;
    }

    .page-tintc__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

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

    .page-tintc__cta-bottom {
        padding: 40px 0;
        margin: 20px auto;
        border-radius: 8px;
    }

    .page-tintc__cta-bottom-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .page-tintc__cta-bottom-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
}