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

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
    }

    .e5yv1o-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 0 20px;
        transition: all 0.3s ease;
    }

    .e5yv1o-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        height: 70px;
    }

    .e5yv1o-logo img {
        height: 40px;
        width: auto;
    }

    .e5yv1o-menu-toggle {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .e5yv1o-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #25D366;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .e5yv1o-nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    .e5yv1o-nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }

    .e5yv1o-nav-menu a:hover {
        color: #25D366;
    }

    .e5yv1o-nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #25D366;
        transition: width 0.3s ease;
    }

    .e5yv1o-nav-menu a:hover::after {
        width: 100%;
    }

    .e5yv1o-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .e5yv1o-hero-section {
        min-height: 100vh;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .e5yv1o-hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
    }

    .e5yv1o-hero-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .e5yv1o-hero-text h1 {
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .e5yv1o-hero-text p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .e5yv1o-hero-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .e5yv1o-btn-primary {
        background: white;
        color: #25D366;
        padding: 15px 30px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .e5yv1o-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .e5yv1o-btn-secondary {
        background: transparent;
        color: white;
        padding: 15px 30px;
        border: 2px solid white;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .e5yv1o-btn-secondary:hover {
        background: white;
        color: #25D366;
    }

    .e5yv1o-hero-image {
        position: relative;
    }

    .e5yv1o-hero-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .e5yv1o-stats-section {
        padding: 80px 20px;
        background: #f8f9fa;
    }

    .e5yv1o-stats-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }

    .e5yv1o-stat-item {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .e5yv1o-stat-item:hover {
        transform: translateY(-5px);
    }

    .e5yv1o-stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: #25D366;
        margin-bottom: 10px;
    }

    .e5yv1o-stat-label {
        font-size: 1.1rem;
        color: #666;
        font-weight: 500;
    }

    .e5yv1o-features-section {
        padding: 100px 20px;
        background: white;
    }

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

    .e5yv1o-section-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 20px;
    }

    .e5yv1o-section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 60px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .e5yv1o-features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }

    .e5yv1o-feature-card {
        padding: 40px;
        background: #f8f9fa;
        border-radius: 20px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .e5yv1o-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-color: #25D366;
    }

    .e5yv1o-feature-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        display: block;
    }

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

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

    .e5yv1o-products-section {
        padding: 100px 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

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

    .e5yv1o-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }

    .e5yv1o-product-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .e5yv1o-product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #25D366, #128C7E);
    }

    .e5yv1o-product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .e5yv1o-product-name {
        font-size: 1.5rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
    }

    .e5yv1o-product-desc {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .e5yv1o-product-highlight {
        background: #25D366;
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
        display: inline-block;
    }

    .e5yv1o-testimonials-section {
        padding: 100px 20px;
        background: white;
    }

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

    .e5yv1o-testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .e5yv1o-testimonial-card {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
        position: relative;
        transition: all 0.3s ease;
    }

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

    .e5yv1o-testimonial-content {
        font-style: italic;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .e5yv1o-testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .e5yv1o-author-avatar {
        font-size: 2.5rem;
    }

    .e5yv1o-author-info h4 {
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }

    .e5yv1o-author-info p {
        color: #666;
        font-size: 0.9rem;
    }

    .e5yv1o-rating {
        margin-top: 10px;
        color: #ffc107;
    }

    .e5yv1o-cta-section {
        padding: 100px 20px;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .e5yv1o-cta-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.1;
    }

    .e5yv1o-cta-container {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .e5yv1o-cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
    }

    .e5yv1o-cta-desc {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .e5yv1o-download-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .e5yv1o-download-btn {
        background: white;
        color: #25D366;
        padding: 15px 30px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .e5yv1o-download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .e5yv1o-footer {
        background: #1a1a1a;
        color: white;
        padding: 60px 20px 20px;
    }

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

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

    .e5yv1o-footer-section h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #25D366;
    }

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

    .e5yv1o-footer-section ul li {
        margin-bottom: 10px;
    }

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

    .e5yv1o-footer-section ul li a:hover {
        color: #25D366;
    }

    .e5yv1o-footer-bottom {
        border-top: 1px solid #333;
        padding-top: 20px;
        text-align: center;
        color: #999;
    }

    @media (max-width: 768px) {
        .e5yv1o-menu-toggle {
            display: flex;
        }

        .e5yv1o-nav-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

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

        .e5yv1o-hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .e5yv1o-hero-text h1 {
            font-size: 2.5rem;
        }

        .e5yv1o-hero-buttons {
            justify-content: center;
        }

        .e5yv1o-stats-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

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

        .e5yv1o-products-grid {
            grid-template-columns: 1fr;
        }

        .e5yv1o-testimonials-grid {
            grid-template-columns: 1fr;
        }

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

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

    @media (max-width: 480px) {
        .e5yv1o-hero-text h1 {
            font-size: 2rem;
        }

        .e5yv1o-stats-container {
            grid-template-columns: 1fr;
        }

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

        .e5yv1o-feature-card,
        .e5yv1o-product-card,
        .e5yv1o-testimonial-card {
            padding: 20px;
        }
    }
    