.elementor-9394 .elementor-element.elementor-element-d189532 .elementor-spacer-inner{--spacer-size:50px;}/* Start custom CSS for html, class: .elementor-element-6ff9cfa */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #001B4D;
            --primary-yellow: #FFC000;
            --primary-cyan: #00A3E0;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --success: #28a745;
            --warning: #ffc107;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: var(--text-dark);
            background: var(--white);
            line-height: 1.6;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-cyan) 100%);
            color: var(--white);
            padding: 80px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 192, 0, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(20px); }
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.8;
        }

        .hero-cta {
            display: inline-block;
            background: var(--primary-yellow);
            color: var(--primary-dark);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .hero-cta:hover {
            background: transparent;
            color: var(--primary-yellow);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 192, 0, 0.3);
        }

        /* QR Code Section */
        .qr-section {
            padding: 80px 20px;
            background: var(--bg-light);
            text-align: center;
        }

        .qr-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .qr-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .qr-subtitle {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 40px;
        }

        .qr-code-wrapper {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 27, 77, 0.1);
            display: inline-block;
            margin-bottom: 30px;
        }

        .qr-code-wrapper img {
            width: 300px;
            height: 300px;
            border-radius: 10px;
        }

        .qr-note {
            background: var(--primary-yellow);
            color: var(--primary-dark);
            padding: 20px;
            border-radius: 10px;
            margin-top: 20px;
            font-weight: 600;
            font-size: 14px;
        }

        /* Features Section */
        .features {
            padding: 40px 20px;
            background: var(--white);
        }

        .features-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .features-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-dark);
            text-align: center;
            margin-bottom: 60px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            padding: 40px 30px;
            background: var(--bg-light);
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            border-left: 5px solid var(--primary-cyan);
        }

        .feature-card:hover {
            border-color: var(--primary-cyan);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 163, 224, 0.15);
        }

        .feature-icon {
            font-size: 64px;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 22px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
        }

        /* Download Section */
        .download {
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-cyan) 100%);
            color: var(--white);
            text-align: center;
        }

        .download-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .download-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .download-subtitle {
            font-size: 16px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .download-buttons {
            display: flex;
            gap: 15px;
            flex-direction: column;
            margin-bottom: 30px;
        }

        .btn {
            padding: 16px 30px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-primary {
            background: var(--primary-yellow);
            color: var(--primary-dark);
        }

        .btn-primary:hover {
            background: #FFB300;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 192, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .ios-note {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            font-size: 14px;
            border-left: 4px solid var(--primary-yellow);
            text-align: left;
            backdrop-filter: blur(10px);
        }

        /* Tutorial Section */
        .tutorial-section {
            padding: 80px 20px;
            background: var(--bg-light);
        }

        .tutorial-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .tutorial-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-dark);
            text-align: center;
            margin-bottom: 10px;
        }

        .tutorial-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 30px;
            font-size: 16px;
        }

        /* Steps Navigation */
        .steps-nav {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 5px;
        }

        .step-button {
            flex: 1;
            min-width: 140px;
            padding: 12px;
            background: var(--white);
            border: 2px solid var(--primary-cyan);
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .step-button:hover {
            background: var(--primary-cyan);
            color: var(--white);
            transform: translateY(-2px);
        }

        .step-button.active {
            background: var(--primary-cyan);
            color: var(--white);
        }

        /* Step Content */
        .step-content {
            display: none;
            background: var(--white);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 27, 77, 0.1);
            animation: slideIn 0.3s ease;
        }

        .step-content.active {
            display: block;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-content h2 {
            color: var(--primary-dark);
            font-size: 28px;
            margin-bottom: 20px;
            border-bottom: 3px solid var(--primary-yellow);
            padding-bottom: 15px;
        }

        .step-content p {
            margin-bottom: 15px;
            font-size: 16px;
            line-height: 1.8;
        }

        /* Instructions List */
        .instructions {
            background: var(--bg-light);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 4px solid var(--primary-cyan);
        }

        .instructions ol {
            margin-left: 20px;
        }

        .instructions li {
            margin-bottom: 12px;
            font-size: 15px;
        }

        /* Info Box */
        .info-box {
            background: #e3f2fd;
            border-left: 4px solid var(--primary-cyan);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .warning-box {
            background: #fff3cd;
            border-left: 4px solid var(--warning);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .success-box {
            background: #d4edda;
            border-left: 4px solid var(--success);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        /* Table */
        .table-wrapper {
            overflow-x: auto;
            margin: 20px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
        }

        th {
            background: var(--primary-dark);
            color: var(--white);
            padding: 12px;
            text-align: left;
            font-weight: 600;
            font-size: 14px;
        }

        td {
            padding: 10px 12px;
            border-bottom: 1px solid var(--bg-light);
            font-size: 14px;
        }

        tr:hover {
            background: var(--bg-light);
        }

        /* FAQ */
        .faq-item {
            background: var(--white);
            border: 1px solid var(--bg-light);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px;
            background: var(--bg-light);
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: var(--primary-cyan);
            color: var(--white);
        }

        .faq-answer {
            padding: 15px;
            display: none;
            background: var(--white);
            font-size: 15px;
            line-height: 1.7;
        }

        .faq-answer.active {
            display: block;
        }

        .faq-icon {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .faq-icon.active {
            transform: rotate(180deg);
        }

        /* Navigation Buttons */
        .button-group {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            justify-content: space-between;
        }

        .btn-nav {
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-nav-secondary {
            background: var(--bg-light);
            color: var(--text-dark);
            border: 2px solid var(--primary-cyan);
        }

        .btn-nav-secondary:hover {
            background: var(--primary-cyan);
            color: var(--white);
        }

        .btn-nav-primary {
            background: var(--primary-cyan);
            color: var(--white);
        }

        .btn-nav-primary:hover {
            background: #0087b8;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .features-title,
            .download-title,
            .tutorial-title {
                font-size: 28px;
            }

            .qr-code-wrapper img {
                width: 250px;
                height: 250px;
            }

            .download-buttons {
                flex-direction: column;
            }

            .feature-icon {
                font-size: 48px;
            }

            .feature-card h3 {
                font-size: 18px;
            }

            .step-content {
                padding: 20px;
            }

            .step-button {
                min-width: 100px;
                padding: 10px;
                font-size: 12px;
            }

            .steps-nav {
                flex-direction: column;
            }

            table {
                font-size: 13px;
            }

            th, td {
                padding: 8px;
            }

            .button-group {
                flex-direction: column;
            }
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content {
            animation: slideInUp 0.8s ease-out;
        }

        .feature-card {
            animation: slideInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
    </style>/* End custom CSS */