
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .tfci-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .tfci-header {
            background: linear-gradient(135deg, #25d366, #128c7e);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .tfci-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .tfci-logo {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .tfci-logo img {
            height: 40px;
            margin-right: 10px;
        }

        .tfci-nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .tfci-nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        .tfci-nav-link:hover {
            opacity: 0.8;
        }

        .tfci-hero {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .tfci-hero-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .tfci-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .tfci-cta-button {
            display: inline-block;
            background: white;
            color: #25d366;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .tfci-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .tfci-main-content {
            padding: 4rem 0;
        }

        .tfci-section {
            margin-bottom: 4rem;
        }

        .tfci-section-title {
            font-size: 2.5rem;
            color: #25d366;
            margin-bottom: 2rem;
            text-align: center;
        }

        .tfci-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .tfci-feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .tfci-feature-card:hover {
            transform: translateY(-5px);
        }

        .tfci-feature-icon {
            font-size: 3rem;
            color: #25d366;
            margin-bottom: 1rem;
        }

        .tfci-feature-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .tfci-feature-desc {
            color: #666;
            line-height: 1.6;
        }

        .tfci-steps-container {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .tfci-step {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .tfci-step-number {
            background: #25d366;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .tfci-step-content h3 {
            color: #333;
            margin-bottom: 0.5rem;
        }

        .tfci-step-content p {
            color: #666;
        }

        .tfci-compatibility-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .tfci-compatibility-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }

        .tfci-compatibility-icon {
            font-size: 2.5rem;
            color: #25d366;
            margin-bottom: 1rem;
        }

        .tfci-cta-section {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-top: 4rem;
        }

        .tfci-cta-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .tfci-cta-desc {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .tfci-footer {
            background: #333;
            color: white;
            padding: 3rem 0 1rem;
        }

        .tfci-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .tfci-footer-section h4 {
            color: #25d366;
            margin-bottom: 1rem;
        }

        .tfci-footer-section ul {
            list-style: none;
        }

        .tfci-footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .tfci-footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .tfci-footer-section ul li a:hover {
            color: #25d366;
        }

        .tfci-footer-bottom {
            border-top: 1px solid #555;
            padding-top: 1rem;
            text-align: center;
            color: #ccc;
        }

        @media (max-width: 768px) {
            .tfci-nav-menu {
                display: none;
            }

            .tfci-hero-title {
                font-size: 2rem;
            }

            .tfci-hero-subtitle {
                font-size: 1.1rem;
            }

            .tfci-section-title {
                font-size: 2rem;
            }

            .tfci-step {
                flex-direction: column;
                text-align: center;
            }

            .tfci-step-number {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
    