
        * {
            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);
            color: white;
            padding: 1rem 0;
            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;
            flex-wrap: wrap;
        }

        .tfci-logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: bold;
        }

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

        .tfci-nav-menu {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .tfci-nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .tfci-nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }

        .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;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

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

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

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

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

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

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

        .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: all 0.3s ease;
            border-left: 4px solid #25d366;
        }

        .tfci-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

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

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

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

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

        .tfci-content-title {
            font-size: 2rem;
            color: #25d366;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .tfci-content-text {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .tfci-highlight {
            background: linear-gradient(120deg, #25d366, #128c7e);
            color: white;
            padding: 3rem;
            border-radius: 15px;
            text-align: center;
            margin: 3rem 0;
        }

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

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

        .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;
            font-weight: 700;
        }

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

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

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

        .tfci-footer {
            background: #333;
            color: white;
            padding: 3rem 0 2rem;
            text-align: center;
        }

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

        .tfci-footer-section {
            text-align: left;
        }

        .tfci-footer-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #25d366;
            font-weight: 600;
        }

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

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

        .tfci-footer-bottom {
            border-top: 1px solid #555;
            padding-top: 2rem;
            color: #999;
        }

        .tfci-list {
            list-style: none;
            padding-left: 0;
        }

        .tfci-list-item {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 2rem;
        }

        .tfci-list-item:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #25d366;
            font-weight: bold;
        }

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

            .tfci-nav-menu {
                justify-content: center;
            }

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

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

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

            .tfci-features-grid {
                grid-template-columns: 1fr;
            }

            .tfci-content-section {
                padding: 2rem;
            }

            .tfci-footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .tfci-footer-section {
                text-align: center;
            }
        }
    