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

        html, body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Navigation Styles */
        .peqx9z-navbar-wrapper {
            background: linear-gradient(135deg, #0088cc 0%, #0077aa 100%);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .peqx9z-navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            height: 70px;
        }

        .peqx9z-logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

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

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

        .peqx9z-nav-link {
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: opacity 0.3s ease;
            padding: 8px 12px;
            border-radius: 4px;
        }

        .peqx9z-nav-link:hover {
            opacity: 0.8;
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Hero Section */
        .peqx9z-hero-section {
            background: linear-gradient(135deg, #0088cc 0%, #00a8e8 50%, #0077aa 100%);
            color: white;
            padding: 100px 20px;
            text-align: center;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .peqx9z-hero-content {
            max-width: 800px;
            animation: fadeInDown 0.8s ease;
        }

        .peqx9z-hero-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .peqx9z-hero-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.95;
            line-height: 1.4;
        }

        .peqx9z-cta-primary {
            background-color: #ffffff;
            color: #0088cc;
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 10px;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

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

        .peqx9z-cta-secondary {
            background-color: transparent;
            color: white;
            padding: 16px 40px;
            border: 2px solid white;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 10px;
            text-decoration: none;
        }

        .peqx9z-cta-secondary:hover {
            background-color: white;
            color: #0088cc;
            transform: translateY(-2px);
        }

        /* Features Section */
        .peqx9z-features-section {
            padding: 80px 20px;
            background-color: #f8f9fa;
        }

        .peqx9z-section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .peqx9z-section-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #333;
        }

        .peqx9z-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .peqx9z-feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
        }

        .peqx9z-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 136, 204, 0.15);
        }

        .peqx9z-feature-icon {
            font-size: 40px;
            margin-bottom: 15px;
        }

        .peqx9z-feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #0088cc;
        }

        .peqx9z-feature-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* Download Section */
        .peqx9z-download-section {
            padding: 80px 20px;
            background: white;
        }

        .peqx9z-download-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .peqx9z-download-info h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #0088cc;
        }

        .peqx9z-download-info p {
            font-size: 16px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .peqx9z-download-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 30px;
        }

        .peqx9z-download-btn {
            background-color: #0088cc;
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            display: block;
        }

        .peqx9z-download-btn:hover {
            background-color: #0077aa;
            transform: translateX(5px);
        }

        .peqx9z-download-image {
            text-align: center;
        }

        .peqx9z-download-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
        }

        /* About Section */
        .peqx9z-about-section {
            padding: 80px 20px;
            background-color: #f8f9fa;
        }

        .peqx9z-about-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .peqx9z-about-text {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .peqx9z-about-highlight {
            color: #0088cc;
            font-weight: 600;
        }

        /* Why Choose Section */
        .peqx9z-why-section {
            padding: 80px 20px;
            background: white;
        }

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

        .peqx9z-why-item {
            padding: 30px;
            border-left: 4px solid #0088cc;
            background-color: #f8f9fa;
            border-radius: 5px;
        }

        .peqx9z-why-item h4 {
            font-size: 18px;
            color: #0088cc;
            margin-bottom: 12px;
        }

        .peqx9z-why-item p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* FAQ Section */
        .peqx9z-faq-section {
            padding: 80px 20px;
            background-color: #f8f9fa;
        }

        .peqx9z-faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .peqx9z-faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .peqx9z-faq-question {
            padding: 20px;
            background-color: #f8f9fa;
            cursor: pointer;
            font-weight: 600;
            color: #0088cc;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .peqx9z-faq-question:hover {
            background-color: #e8f4fb;
        }

        .peqx9z-faq-answer {
            padding: 20px;
            color: #666;
            display: none;
            font-size: 15px;
            line-height: 1.6;
        }

        .peqx9z-faq-answer.active {
            display: block;
        }

        .peqx9z-faq-toggle {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .peqx9z-faq-toggle.active {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .peqx9z-cta-section {
            background: linear-gradient(135deg, #0088cc 0%, #0077aa 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
        }

        .peqx9z-cta-container {
            max-width: 700px;
            margin: 0 auto;
        }

        .peqx9z-cta-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .peqx9z-cta-text {
            font-size: 16px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        /* Footer */
        .peqx9z-footer-wrapper {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 60px 20px 20px;
        }

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

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

        .peqx9z-footer-section h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 16px;
        }

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

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

        .peqx9z-footer-section a {
            color: #ccc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .peqx9z-footer-section a:hover {
            color: #0088cc;
        }

        .peqx9z-footer-bottom {
            border-top: 1px solid #333;
            padding-top: 30px;
            text-align: center;
            font-size: 14px;
            color: #999;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .peqx9z-navbar-container {
                flex-direction: column;
                height: auto;
                padding: 15px 20px;
            }

            .peqx9z-nav-menu {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
                width: 100%;
                margin-top: 15px;
            }

            .peqx9z-hero-title {
                font-size: 32px;
            }

            .peqx9z-hero-subtitle {
                font-size: 16px;
            }

            .peqx9z-download-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .peqx9z-section-title {
                font-size: 28px;
            }

            .peqx9z-faq-question {
                padding: 15px;
            }

            .peqx9z-faq-answer {
                padding: 15px;
            }

            .peqx9z-cta-title {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .peqx9z-hero-section {
                padding: 60px 15px;
                min-height: 400px;
            }

            .peqx9z-hero-title {
                font-size: 24px;
            }

            .peqx9z-hero-subtitle {
                font-size: 14px;
            }

            .peqx9z-cta-primary, .peqx9z-cta-secondary {
                padding: 12px 30px;
                font-size: 14px;
                margin: 8px;
            }

            .peqx9z-section-title {
                font-size: 22px;
            }

            .peqx9z-feature-card {
                padding: 20px;
            }

            .peqx9z-download-buttons {
                gap: 10px;
            }

            .peqx9z-download-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    