
        .tc-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Section */
        .tc-header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .tc-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .tc-header-content {
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tc-header h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .tc-header p {
            font-size: 20px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content */
        .tc-main {
            padding: 60px 0;
        }

        .tc-content-card {
            background: var(--white);
            border-radius: 20px;
            padding: 50px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .tc-content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-dark), var(--secondary-color));
            transform: scaleX(0);
            transform-origin: left;
            animation: expandWidth 0.8s ease-out 0.3s forwards;
        }

        @keyframes expandWidth {
            to { transform: scaleX(1); }
        }

        .tc-content-card:nth-child(1) { animation-delay: 0.1s; }
        .tc-content-card:nth-child(2) { animation-delay: 0.2s; }
        .tc-content-card:nth-child(3) { animation-delay: 0.3s; }
        .tc-content-card:nth-child(4) { animation-delay: 0.4s; }
        .tc-content-card:nth-child(5) { animation-delay: 0.5s; }
        .tc-content-card:nth-child(6) { animation-delay: 0.6s; }
        .tc-content-card:nth-child(7) { animation-delay: 0.7s; }
        .tc-content-card:nth-child(8) { animation-delay: 0.8s; }
        .tc-content-card:nth-child(9) { animation-delay: 0.9s; }

        .tc-section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tc-section-number {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .tc-content-card p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .tc-content-card p:last-child {
            margin-bottom: 0;
        }

        /* Highlight Box */
        .tc-highlight {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
            border-left: 4px solid var(--primary-dark);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .tc-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.1), transparent);
            transform: translateX(-100%);
            animation: shimmer 2s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Footer Info */
        .tc-footer-info {
            text-align: center;
            padding: 40px 0;
            opacity: 0;
            animation: fadeIn 0.8s ease-out 1s forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .tc-contact-box {
            background: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: var(--shadow);
            display: inline-block;
            transition: var(--transition);
        }

        .tc-contact-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .tc-contact-box i {
            font-size: 24px;
            color: var(--primary-dark);
            margin-right: 10px;
        }

        .tc-contact-box strong {
            color: var(--text-dark);
        }

        .tc-last-updated {
            margin-top: 20px;
            font-size: 14px;
            color: var(--text-light);
            opacity: 0.8;
        }

        /* Scroll Animations */
        .tc-scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .tc-scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .tc-header h1 {
                font-size: 36px;
            }
            
            .tc-header p {
                font-size: 18px;
            }
            
            .tc-content-card {
                padding: 30px 20px;
            }
            
            .tc-section-title {
                font-size: 24px;
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .tc-section-number {
                margin-bottom: 10px;
            }
        }
