
        * {
            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);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .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: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

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

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

        .e5yv1o-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .e5yv1o-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);
        }

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

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

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

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

        .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: all 0.3s ease;
            border: 1px solid #e9ecef;
        }

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

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

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

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

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

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

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

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

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

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

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

        .e5yv1o-step-item {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            border-left: 4px solid #25d366;
            transition: all 0.3s ease;
        }

        .e5yv1o-step-item:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .e5yv1o-step-number {
            background: #25d366;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 1rem;
        }

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

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

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

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

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

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

        .e5yv1o-footer-section p,
        .e5yv1o-footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.6;
        }

        .e5yv1o-footer-section a:hover {
            color: #25d366;
        }

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

        @media (max-width: 768px) {
            .e5yv1o-hero-title {
                font-size: 2rem;
            }

            .e5yv1o-nav-menu {
                gap: 1rem;
            }

            .e5yv1o-nav-link {
                padding: 0.3rem 0.8rem;
                font-size: 0.9rem;
            }

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

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

        @media (max-width: 480px) {
            .e5yv1o-hero-title {
                font-size: 1.8rem;
            }

            .e5yv1o-nav {
                flex-direction: column;
                gap: 1rem;
            }

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