 
          @font-face {
                font-family: 'Avenir';
                src: url('../fonts/Avenir/Avenir_Regular/AvenirRegular.ttf') format('truetype');
                font-weight: normal;
                font-style: normal;
            }

            @font-face {
                font-family: 'Avenir';
                src: url('../fonts/Avenir/Avenir_Black/AvenirBlack.ttf') format('truetype');
                font-weight: 900;
                font-style: normal;
            }

            @font-face {
                font-family: 'Avenir';
                src: url('../fonts/Avenir/Avenir_Book/AvenirBook.ttf') format('truetype');
                font-weight: 300;
                font-style: normal;
            }

            @font-face {
                font-family: 'Avenir';
                src: url('../fonts/Avenir/Avenir_Heavy/AvenirHeavy.ttf') format('truetype');
                font-weight: 700;
                font-style: normal;
            }

            @font-face {
                font-family: 'Avenir';
                src: url('../fonts/Avenir/Avenir_Regular/AvenirRegular.ttf') format('truetype');
                font-weight: 200;
                font-style: normal;
            }

            @font-face {
                font-family: 'Avenir Next';
                src: url('../fonts/Avenir_Next/AvenirNextLTProRegular.otf') format('opentype');
                font-weight: normal;
                font-style: normal;
            }

            @font-face {
                font-family: 'Avenir Next';
                src: url('../fonts/Avenir_Next/AvenirNextLTProBold.otf') format('opentype');
                font-weight: bold;
                font-style: normal;
            }

            @font-face {
                font-family: 'Avenir Next';
                src: url('../fonts/Avenir_Next/AvenirNextLTProIt.otf') format('opentype');
                font-weight: normal;
                font-style: italic;
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            /* Font styles */
            h1, h2, h3, h4, h5, h6, .logo, .btn, .unlock-title, .payment-title, .payment-amount {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
            }

            p, div, span, a, .subtitle, .feature-text {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
            }

            body {
                background-color: #092E52;
                color: white;
                overflow-x: hidden;
            }

            /* Navigation styles */
            .navbar {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1rem 5rem;
                position: relative;
            }

            .navbar::after {
                content: '';
                position: absolute;
                bottom: 0;
                width: 95%;
                height: 1px;
                background-color: rgba(255, 255, 255, 0.1);
                left: 3%;
            }

            .logo {
                font-size: 2rem;
                font-weight: bold;
                color: white;
                text-decoration: none;
            }

            .nav-buttons {
                display: flex;
                gap: 1rem;
            }

          

            .btn-outline, .btn-outline:hover {
                background-color: white;
                color: #092E52;
            }

            .btn-primary {
                background-color: #6FE7DD;
                color: #092E52;
            }
        
                     .btn {
                display: inline-block;
                padding: 0.8rem 3rem;
                border-radius: 2rem;
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-weight: 600;
                text-decoration: none;
                cursor: pointer;
                border: none;
                font-size: 1rem;
            }
        /* Form container */
        .form-container {
            max-width: 1200px;
            margin: 3rem auto;
            background-color: white;
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Form styles */
        .form-title {
            font-family: 'Avenir', 'Helvetica Neue', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: #092E52;
            margin-bottom: 2rem;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        
        
        .form-label {
            display: block;
            font-weight: 900;
            margin-bottom: 0.5rem;
            color: #092E52;
            font-family: 'Avenir';
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 0.5rem;
            font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #6FE7DD;
        }
        
        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230e2c50' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }
        
        .form-group.full-width {
            grid-column: span 2;
        }
        
        .form-actions {
            display: flex;
            justify-content: flex-end;
            margin-top: 1rem;
        }
        
        .next-btn {
            background-color: #6FE7DD;
            color: #000000;
            padding: 0.8rem 10rem;
            font-family: 'Avenir';
            border-radius: 2rem;
            font-weight: 500;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-top: 15px;
            width: 100%;
        }
        
        .next-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(140, 228, 215, 0.3);
        }
        
        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 10;
        }
        
        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        /* Responsive styles */
        @media (max-width: 1024px) {
            .navbar {
                padding: 1.5rem 3rem;
            }
            
            .form-container {
                margin: 2rem 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 2rem;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .nav-buttons {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                background-color: #092E52;
                padding: 1rem;
                gap: 0.8rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 5;
            }
            
            .nav-buttons.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .menu-toggle.active span:nth-child(1) {
                transform: translateY(9px) rotate(45deg);
            }
            
            .menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }
            
            .menu-toggle.active span:nth-child(3) {
                transform: translateY(-9px) rotate(-45deg);
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .form-container {
                padding: 2rem 1.5rem;
                margin: 1.5rem 1rem;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .form-group.full-width {
                grid-column: span 1;
            }
            
            .form-actions {
                justify-content: center;
            }
            
            .next-btn {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .navbar {
                padding: 1rem;
            }
            
            .logo {
                font-size: 2rem;
            }
            
            .form-container {
                padding: 1.5rem 1rem;
                margin: 1rem 0.5rem;
            }
            
            .form-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
            
            .form-label {
                font-size: 0.9rem;
            }
            
            .form-control {
                padding: 0.7rem 0.8rem;
                font-size: 0.9rem;
            }
        }
                .btn-outline, .btn-outline:hover {
                background-color: white;
                color: #092E52;
            }

            .btn-primary:hover {
                background-color: white;
                color: #092E52;
            }
                        .btn-primary:active {
                background-color: white;
                color: #092E52;
            }