
        .page-tin-tc {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .page-tin-tc__hero-section {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 10px; /* Small top padding, body handles --header-offset */
            background-color: #2563eb;
        }

        .page-tin-tc__hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
        }

        .page-tin-tc__hero-content {
            position: relative;
            z-index: 1;
            color: #ffffff;
            max-width: 900px;
            padding: 20px;
        }

        .page-tin-tc__hero-title {
            font-size: 3.2em;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .page-tin-tc__hero-description {
            font-size: 1.2em;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-tin-tc__btn-primary {
            display: inline-block;
            background-color: #f97316; /* Orange for CTA */
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-tin-tc__btn-primary:hover {
            background-color: #ea580c;
            transform: translateY(-2px);
        }

        .page-tin-tc__news-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .page-tin-tc__section-title {
            font-size: 2.5em;
            color: #2563eb;
            margin-bottom: 40px;
            font-weight: 700;
        }

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

        .page-tin-tc__news-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e0e0e0;
        }

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

        .page-tin-tc__card-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .page-tin-tc__card-content {
            padding: 25px;
        }

        .page-tin-tc__card-date {
            font-size: 0.9em;
            color: #64748b;
            margin-bottom: 10px;
        }

        .page-tin-tc__card-title {
            font-size: 1.5em;
            color: #2563eb;
            margin-bottom: 15px;
            line-height: 1.3;
            font-weight: 600;
        }

        .page-tin-tc__card-title a {
            color: inherit;
            text-decoration: none;
        }

        .page-tin-tc__card-title a:hover {
            text-decoration: underline;
        }

        .page-tin-tc__card-description {
            font-size: 1em;
            color: #555555;
            margin-bottom: 20px;
        }

        .page-tin-tc__read-more {
            display: inline-block;
            color: #2563eb;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .page-tin-tc__read-more:hover {
            color: #1a4a9e;
            text-decoration: underline;
        }

        .page-tin-tc__cta-banner {
            background-color: #2563eb;
            color: #ffffff;
            padding: 80px 20px;
            text-align: center;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .page-tin-tc__cta-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
        }

        .page-tin-tc__cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .page-tin-tc__cta-title {
            font-size: 2.8em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .page-tin-tc__cta-description {
            font-size: 1.2em;
            margin-bottom: 40px;
        }

        .page-tin-tc__faq-section {
            padding: 60px 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-tin-tc__faq-item {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .page-tin-tc__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            font-size: 1.2em;
            font-weight: 600;
            color: #2563eb;
            cursor: pointer;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-tin-tc__faq-question:hover {
            background-color: #eef2ff;
        }

        .page-tin-tc__faq-question h3 {
            margin: 0;
            flex-grow: 1;
            pointer-events: none; /* Prevent h3 from blocking click event */
            color: inherit;
        }

        .page-tin-tc__faq-toggle {
            font-size: 1.5em;
            font-weight: bold;
            margin-left: 15px;
            pointer-events: none; /* Prevent toggle icon from blocking click event */
            color: #64748b;
        }

        .page-tin-tc__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: #555555;
            font-size: 1em;
        }

        .page-tin-tc__faq-item.active .page-tin-tc__faq-answer {
            max-height: 2000px !important;
            padding: 20px 25px !important;
            opacity: 1;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .page-tin-tc__hero-title {
                font-size: 2.8em;
            }
            .page-tin-tc__hero-description {
                font-size: 1.1em;
            }
            .page-tin-tc__section-title {
                font-size: 2em;
            }
            .page-tin-tc__cta-title {
                font-size: 2.4em;
            }
        }

        @media (max-width: 768px) {
            .page-tin-tc {
                font-size: 16px;
                line-height: 1.6;
            }
            .page-tin-tc__hero-section {
                height: 350px;
                padding-top: 10px !important;
            }
            .page-tin-tc__hero-title {
                font-size: 2.2em;
                max-width: 100%;
            }
            .page-tin-tc__hero-description {
                font-size: 1em;
                max-width: 100%;
            }
            .page-tin-tc__btn-primary {
                padding: 12px 25px;
                font-size: 1em;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-tin-tc__news-section, .page-tin-tc__faq-section {
                padding: 40px 15px;
            }
            .page-tin-tc__section-title {
                font-size: 1.8em;
                margin-bottom: 30px;
            }
            .page-tin-tc__news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page-tin-tc__card-image {
                height: 180px;
            }
            .page-tin-tc__card-content {
                padding: 20px;
            }
            .page-tin-tc__card-title {
                font-size: 1.3em;
            }
            .page-tin-tc__cta-banner {
                padding: 50px 15px;
            }
            .page-tin-tc__cta-title {
                font-size: 2em;
            }
            .page-tin-tc__cta-description {
                font-size: 1em;
            }
            .page-tin-tc__faq-question {
                font-size: 1.1em;
                padding: 15px 20px;
            }
            .page-tin-tc__faq-answer {
                padding: 15px 20px !important;
            }

            /* Universal image responsive styles for mobile */
            .page-tin-tc img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-tin-tc__news-card, .page-tin-tc__hero-section, .page-tin-tc__cta-banner,
            .page-tin-tc__news-section, .page-tin-tc__faq-section,
            .page-tin-tc__news-grid, .page-tin-tc__cta-content,
            .page-tin-tc__faq-item, .page-tin-tc__faq-question, .page-tin-tc__faq-answer,
            .page-tin-tc__cta-button-container { /* Added button container */
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            /* Button container specific mobile styles */
            .page-tin-tc__cta-button-container {
                display: flex;
                flex-direction: column; /* Stack buttons vertically */
                gap: 10px;
            }
        }
    