        :root {
            --primary: #37ca37;
            --secondary: #188bf6;
            --white: #ffffff;
            --gray: #cbd5e0;
            --black: #000000;
            --red: #e93d3d;
            --orange: #f6ad55;
            --yellow: #faf089;
            --green: #9ae6b4;
            --teal: #81e6d9;
            --malibu: #63b3ed;
            --indigo: #757BBD;
            --purple: #d6bcfa;
            --pink: #fbb6ce;
            --transparent: transparent;
            --overlay: rgba(0, 0, 0, 0.5);
            --color-kzpsx4bv: #272727;
            --color-kzpt4yoj: #c5a47e;
            --color-kzptp89i: #999999;
            --color-kzpu6hdj: #323232;
            --color-mavhj6e3: #154a15ff;
            --color-mavhnmuo: #b01919ff;
            --color-lx2prsc2: #000321;
            --color-lx2py304: #0038FF;
            --color-lx2q00eu: #8893A8;
            --color-lx2qdjfj: #F6F6FF;
            --color-lx2qgvbk: #565A7C;
            --color-lx3csigp: #C9D8E0;
            --arial: 'Arial';
            --lato: 'Lato';
            --open-sans: 'Open Sans';
            --montserrat: 'Montserrat';
            --roboto: 'Roboto';
            --khand: 'Khand';
            --inter: 'Inter';
            --headlinefont: 'Khand';
            --contentfont: 'Khand';
            --text-color: #000000;
            --link-color: #188bf6;
        }

        body {
            font-family: var(--khand), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--color-lx2qdjfj);
            margin: 0;
            padding: 0;
            min-height: 100vh;
            color: var(--color-lx2prsc2);
            line-height: 1.6;
        }

        /* Navigation */
        .nav-header {
            background: var(--color-mavhj6e3);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1170px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            color: var(--white);
            font-size: 1.5em;
            font-weight: 700;
            font-family: var(--headlinefont);
            text-transform: uppercase;
        }

        .nav-button {
            background: var(--color-mavhnmuo);
            color: var(--white);
            padding: 12px 25px;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-family: var(--contentfont);
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .nav-button:hover {
            background: #a01616;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--black) 0%, var(--color-kzpsx4bv) 100%);
            color: var(--white);
            padding: 100px 20px 80px;
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80') center/cover;
            opacity: 0.5;
            z-index: -1;
        }

        .hero-container {
            max-width: 1170px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            padding-left: 300px;
        }

        .hero-title {
            font-size: 4em;
            font-weight: 700;
            margin: 0 0 20px 0;
            font-family: var(--headlinefont);
            text-transform: uppercase;
            letter-spacing: 3px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5em;
            margin: 0;
            opacity: 0.9;
            font-family: var(--contentfont);
            font-weight: 400;
        }

        /* About Platform Section */
        .about-section {
            background: var(--color-kzpsx4bv);
            color: var(--white);
            padding: 80px 20px;
        }

        .about-container {
            max-width: 1170px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-content h2 {
            font-size: 3.5em;
            font-weight: 700;
            margin: 0 0 30px 0;
            font-family: var(--headlinefont);
            text-transform: uppercase;
            color: var(--white);
            letter-spacing: 2px;
        }

        .about-content p {
            font-size: 1em;
            margin-bottom: 20px;
            font-family: var(--contentfont);
            line-height: 1.8;
        }

        .about-content strong {
            font-weight: 700;
            color: var(--white);
        }

        .video-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            background: var(--black);
            cursor: pointer;
        }

        .video-thumbnail {
            position: relative;
            width: 100%;
            height: 100%;
            background-image: url('https://img.youtube.com/vi/2ehoK1d9X00/maxresdefault.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .video-thumbnail:hover {
            transform: scale(1.02);
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-mavhnmuo);
            font-size: 2em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .play-button:hover {
            background: var(--white);
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        .play-button::before {
            content: '▶';
            margin-left: 4px;
        }

        .video-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: var(--white);
            padding: 20px;
            font-family: var(--contentfont);
        }

        .video-title {
            font-size: 1.1em;
            font-weight: 600;
            margin: 0;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 12px;
            display: none;
            z-index: 10;
        }

        .video-container.playing iframe {
            display: block;
        }

        .video-container.playing .video-thumbnail {
            display: none;
        }

        /* Workflow Section */
        .workflow-section {
            background: var(--white);
            padding: 80px 20px;
        }

        .workflow-container {
            max-width: 1170px;
            margin: 0 auto;
        }

        .section-title {
            color: var(--color-lx2prsc2);
            font-size: 2.5em;
            margin-bottom: 50px;
            text-align: center;
            font-weight: 700;
            font-family: var(--headlinefont);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .workflow-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .phase-section {
            background: var(--color-lx2qdjfj);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .phase-title {
            color: var(--color-lx2prsc2);
            font-size: 1.8em;
            margin-bottom: 30px;
            border-bottom: 3px solid var(--secondary);
            padding-bottom: 15px;
            font-weight: 700;
            font-family: var(--headlinefont);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 35px;
            position: relative;
        }

        .step-number {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2em;
            margin-right: 25px;
            flex-shrink: 0;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            font-family: var(--headlinefont);
        }

        .step-content {
            flex: 1;
            background: var(--white);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid var(--secondary);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .step h3 {
            margin: 0 0 12px 0;
            color: var(--color-lx2prsc2);
            font-size: 1.3em;
            font-family: var(--headlinefont);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .step p {
            margin: 0;
            color: var(--color-lx2qgvbk);
            line-height: 1.6;
            font-family: var(--contentfont);
            font-size: 1em;
        }

        .backend-section {
            background: linear-gradient(135deg, var(--color-mavhnmuo), #c73e1d);
            color: var(--white);
            padding: 40px;
            margin: 30px 0;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .backend-section h3 {
            margin: 0 0 25px 0;
            font-size: 1.6em;
            text-align: center;
            font-family: var(--headlinefont);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .backend-step {
            background: rgba(255, 255, 255, 0.15);
            padding: 18px;
            margin: 12px 0;
            border-radius: 10px;
            border-left: 4px solid rgba(255, 255, 255, 0.5);
            font-family: var(--contentfont);
        }

        .backend-step strong {
            font-weight: 700;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--green), var(--teal));
            color: var(--color-lx2prsc2);
            padding: 25px;
            border-radius: 12px;
            margin: 25px 0;
            border-left: 4px solid var(--primary);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }

        .highlight-box strong {
            font-size: 1.1em;
            font-family: var(--headlinefont);
        }

        /* FAQ Section */
        .faq-section {
            background: var(--color-lx2qdjfj);
            padding: 80px 20px;
        }

        .faq-container {
            max-width: 1170px;
            margin: 0 auto;
            text-align: center;
        }

        .faq-subtitle {
            color: var(--black);
            font-size: 1.2em;
            font-weight: 400;
            margin-bottom: 20px;
            font-family: var(--contentfont);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .faq-title {
            color: var(--color-lx2prsc2);
            font-size: 3.5em;
            font-weight: 700;
            margin-bottom: 50px;
            font-family: var(--headlinefont);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .faq-grid {
            display: grid;
            gap: 20px;
            margin-bottom: 50px;
            text-align: left;
        }

        .faq-item {
            background: var(--white);
            border-radius: 10px;
            border: 1.5px solid var(--color-lx3csigp);
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            background: var(--white);
            color: var(--color-lx2qgvbk);
            padding: 20px;
            font-size: 1.1em;
            font-weight: 700;
            font-family: var(--inter);
            border: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: var(--color-lx2qdjfj);
        }

        .faq-answer {
            background: var(--color-lx2qdjfj);
            color: var(--color-lx2q00eu);
            padding: 20px;
            font-family: var(--inter);
            border-top: 1px solid var(--color-lx3csigp);
            display: none;
        }

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

        .faq-icon {
            font-size: 1.2em;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* CTA Section */
        .cta-section {
            background: var(--color-lx2qdjfj);
            padding: 60px 20px;
            text-align: center;
        }

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

        .cta-button {
            display: inline-block;
            background: var(--color-mavhnmuo);
            color: var(--white);
            padding: 20px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-family: var(--contentfont);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: #a01616;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Modal Styles - NEW ADDITION */
        .modal {
            display: none;
            /* Hidden by default */
            position: fixed;
            /* Stay in place */
            z-index: 2000;
            /* Higher than navigation */
            left: 0;
            top: 0;
            width: 100%;
            /* Full width */
            height: 100%;
            /* Full height */
            background-color: rgba(0, 0, 0, 0.5);
            /* Semi-transparent black background */
            animation: fadeIn 0.3s ease-in-out;
            /* Smooth fade-in effect */
        }

        .modal-content {
            position: relative;
            margin: 2% auto;
            /* Center the modal with some top margin */
            width: 90%;
            /* Responsive width */
            max-width: 800px;
            /* Maximum width */
            height: 90%;
            /* Most of the screen height */
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            /* Prevent content from spilling out */
        }

        .modal-header {
            background: var(--color-mavhj6e3);
            color: var(--white);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-title {
            font-size: 1.5em;
            font-weight: 700;
            font-family: var(--headlinefont);
            text-transform: uppercase;
            margin: 0;
        }

        .close-button {
            background: none;
            border: none;
            color: var(--white);
            font-size: 2em;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-button:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.1);
        }

        .modal-body {
            height: calc(100% - 80px);
            /* Full height minus header */
            overflow: hidden;
        }

        .form-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Animation for modal fade-in */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Show modal when active */
        .modal.show {
            display: block;
        }

        /* Footer */
        .footer {
            background: var(--color-kzpu6hdj);
            color: var(--white);
            padding: 40px 20px;
            text-align: center;
        }

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

        .footer p {
            margin: 0;
            font-family: var(--contentfont);
            font-size: 1.1em;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .hero-content {
                padding-left: 0;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5em;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-content h2 {
                font-size: 2.5em;
                text-align: center;
            }

            .step {
                flex-direction: column;
                align-items: stretch;
            }

            .step-number {
                align-self: flex-start;
                margin-bottom: 15px;
                margin-right: 0;
            }

            .section-title,
            .faq-title {
                font-size: 2em;
            }

            .nav-container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            /* Modal responsive design */
            .modal-content {
                width: 95%;
                height: 95%;
                margin: 2.5% auto;
            }
        }