
        * {
            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;
        }

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

        .e5yv1o-header {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .e5yv1o-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

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

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

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

        .e5yv1o-nav-link {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
            padding: 0.5rem 0;
        }

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

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

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

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

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

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

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

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

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

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

        .e5yv1o-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, box-shadow 0.3s ease;
        }

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

        .e5yv1o-feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: white;
        }

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

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

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

        .e5yv1o-comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 2rem;
        }

        .e5yv1o-comparison-table th,
        .e5yv1o-comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .e5yv1o-comparison-table th {
            background: #f8f9fa;
            font-weight: 600;
            color: #25D366;
        }

        .e5yv1o-use-cases {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 3rem;
            border-radius: 15px;
            margin: 3rem 0;
        }

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

        .e5yv1o-use-case {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #25D366;
        }

        .e5yv1o-use-case-title {
            font-weight: 600;
            color: #25D366;
            margin-bottom: 0.5rem;
        }

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

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

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

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

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

        .e5yv1o-footer-section h3 {
            color: #25D366;
            margin-bottom: 1rem;
        }

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

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

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

        .e5yv1o-highlight {
            background: linear-gradient(120deg, #25D366 0%, #128C7E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .e5yv1o-hero-title {
                font-size: 2rem;
            }
            
            .e5yv1o-nav-menu {
                gap: 1rem;
            }
            
            .e5yv1o-section-title {
                font-size: 2rem;
            }
            
            .e5yv1o-comparison,
            .e5yv1o-use-cases {
                padding: 2rem 1rem;
            }
        }
    