
        * {
            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: color 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .tfci-nav-link:hover {
            background-color: rgba(255,255,255,0.1);
            color: #f0f0f0;
        }

        .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-hero-description {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.8;
        }

        .tfci-cta-button {
            display: inline-block;
            background: white;
            color: #25D366;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .tfci-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

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

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

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

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

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

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

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

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

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

        .tfci-about-section {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }

        .tfci-about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
        }

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

        .tfci-stat-item {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            border-radius: 15px;
        }

        .tfci-stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            display: block;
        }

        .tfci-stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        .tfci-cta-section {
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            padding: 4rem 0;
            text-align: center;
            border-radius: 15px;
            margin: 3rem 0;
        }

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

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

        .tfci-download-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .tfci-download-btn {
            display: inline-block;
            background: #25D366;
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .tfci-download-btn:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        .tfci-footer {
            background: #2c3e50;
            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 h3 {
            margin-bottom: 1rem;
            color: #25D366;
        }

        .tfci-footer-link {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .tfci-footer-link:hover {
            color: #25D366;
        }

        .tfci-footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #bdc3c7;
        }

        @media (max-width: 768px) {
            .tfci-nav-menu {
                flex-direction: column;
                gap: 1rem;
            }

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

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

            .tfci-download-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        .tfci-mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .tfci-mobile-menu-toggle {
                display: block;
            }

            .tfci-nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #25D366;
                flex-direction: column;
                padding: 1rem;
            }

            .tfci-nav-menu.active {
                display: flex;
            }
        }
    