        
            @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: 2.5rem;
                font-weight: bold;
                color: white;
                text-decoration: none;
            }

            .nav-buttons {
                display: flex;
                gap: 1rem;
            }

            .btn {
                padding: 0.8rem 2.5rem;
                border-radius: 2rem;
                font-weight: 600;
                cursor: pointer;
                text-decoration: none;
                border: none;
                font-size: 1rem;
            }

            .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;
            }

            
            .btn-primary {
                background-color: #6FE7DD;
                color: #092E52;
            }

            /* Main content styles */
            .main-content {
                display: flex;
                padding: 0rem 0rem 0rem 5rem;
                align-items: center;
                justify-content: space-between;
            }

            .content-left {
                width: 50%;
            }

            .main-heading {
                font-size: 4.4rem;
                font-weight: 900;
                margin-bottom: 1.5rem;
                line-height: 1.1;
            }

            .subtitle {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
                line-height: 1.5;
            }

            .features {
                margin: 1.5rem 1.5rem 2.5rem 0;
            }

            .feature {
                display: flex;
                align-items: center;
                margin-bottom: 0.5rem;
            }

            .feature-icon {
                background-color: #6FE7DD;
                color: #092E52;
                width: 24px;
                height: 24px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 1rem;
                font-weight: bold;
                flex-shrink: 0 !important;
            }

            .feature-text {
                font-size: 1.1rem;
            }

            .content-right {
                width: 50%;
                display: flex;
                justify-content: flex-end;
                position: relative;
            }

            .phone-mockup {
                width: 350px;
                position: relative;
            }

            .unlock-overlay {
                position: absolute;
                top: 15%;
                right: 0;
                background-color: white;
                color: black;
                padding: 1.5rem;
                border-radius: 0.8rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                text-align: center;
            }

            .unlock-icon {
                background-color: #092E52;
                color: white;
                width: 40px;
                height: 40px;
                border-radius: 0.5rem;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 0.5rem;
            }

            .unlock-title {
                font-size: 1.2rem;
                font-weight: bold;
                margin-bottom: 0.5rem;
            }

            .payment-overlay {
                position: absolute;
                bottom: 25%;
                left: 50%;
                background-color: white;
                color: black;
                padding: 1.5rem;
                border-radius: 0.8rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                text-align: center;
            }

            .payment-check {
                background-color: #092E52;
                color: white;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 0.5rem;
            }

            .payment-title {
                font-size: 1.2rem;
                font-weight: bold;
                margin-bottom: 0.5rem;
            }

            .payment-amount {
                font-size: 1.2rem;
                font-weight: bold;
            }
        
        
            .why-section {
                padding: 10rem 5rem;
                background-color: #ffffff;
                color: #092E52;
            }

            .section-content {
                max-width: 1200px;
                margin: 0 auto;
            }

            .why-heading {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 3rem;
                font-weight: 900;
                margin-bottom: 1rem;
                text-align: left;
            }

            .why-subtitle {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1.3rem;
                color: #425466;
                margin: 0 0 4rem 0;
                line-height: 1.6;
                text-align: left;
            }

            .stats-container {
                display: flex;
                justify-content: space-between;
            }

            .stat-block {
                flex: 1;
                padding: 0 2rem;
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: baseline;
            }

            .stat-value {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 52px;
                font-weight: 900;
                color: #092E52; 
                position: relative;
                display: inline-block;
            }

            .stat-value::before {
                content: '';
                position: absolute;
                left: -1.5rem;
                top: 50%;
                height: 3rem;
                width: 4px;
                background-color: #6FE7DD;
                transform: translateY(-50%);
            }

            .stat-desc {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 16px;
                color: #425466;
                line-height: 1.5;
                max-width: 200px;
                margin: 0;
                text-align: justify;
                margin-top: -10px;
            }
        
        
            .charge-section {
                background-color: #f5f5f7;
                padding: 5rem 0;
            }

            .section-container {
                max-width: 1200px;
                margin: 0 auto;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 4rem;
            }

            .phone-mockup {
                flex: 1;
                display: flex;
                justify-content: flex-end;
            }

            .phone-frame {
                background-color: #092E52;
                border-radius: 2rem;
                padding: 1rem;
                width: 350px;
                height: 550px;
                position: relative;
            }

            .phone-content {
                background-color: white;
                border-radius: 1.5rem;
                height: 100%;
                padding: 1rem;
                display: flex;
                flex-direction: column;
                position: relative;
            }

            .sudoku-header {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-weight: bold;
                font-size: 1.2rem;
                text-align: center;
                padding: 1rem 0;
            }

            .sudoku-grid {
                margin: 2rem auto;
                width: 240px;
                height: 240px;
                border: 2px solid #333;
                display: grid;
                grid-template-rows: repeat(4, 1fr);
            }

            .sudoku-row {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                height: 100%;
            }

            .sudoku-cell {
                border: 1px solid #333;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                font-weight: bold;
            }

            .unlock-popup {
                position: absolute;
                bottom: 15%;
                right: 0;
                background-color: white;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                border-radius: 0.5rem 0 0 0.5rem;
                padding: 0.5rem 1rem;
                display: flex;
                align-items: center;
            }

            .lock-icon {
                background-color: #092E52;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 1rem;
            }

            .lock-placeholder {
                width: 20px;
                height: 20px;
                border: 2px solid white;
                border-radius: 50%;
                position: relative;
            }

            .lock-placeholder::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
                width: 10px;
                height: 10px;
                background-color: white;
                border-radius: 2px;
            }

            .unlock-text {
                text-align: center;
            }

            .unlock-now {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-weight: bold;
                font-size: 1rem;
            }

            .unlock-price {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-weight: bold;
                font-size: 1.2rem;
            }

            .charge-content {
                flex: 1;
            }

            .charge-heading {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 3rem;
                font-weight: 900;
                color: #092E52;
                margin-bottom: 2rem;
                line-height: 1.2;
            }

            .charge-desc {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1.1rem;
                color: #425466;
                line-height: 1.4;
                margin-bottom: 0.7rem;
            }

            .charge-desc-secondary {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1.1rem;
                color: #425466;
                line-height: 1.4;
                margin-bottom: 0.7rem;
            }
        
        
            /* Features Section Styles */
            .features-section {
                background-color: #ffffff;
                padding: 8rem 0;
            }

            .section-container2 {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 2rem;
            }

            .features-heading {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 3rem;
                font-weight: 900;
                color: #092E52;
                margin-bottom: 1rem;
            }

            .features-subtitle {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1.3rem;
                color: #425466;
                margin-bottom: 4rem;
            }

            .features-grid {
                display: flex;
                justify-content: space-between;
                gap: 2rem;
            }

            .feature-card {
                flex: 1;
                text-align: left;
            }

            .feature-icon2 {
                margin-bottom: 1.5rem;
            }

            .icon-placeholder {
                display: inline-block;
            }

            .feature-title {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 1.4rem;
                font-weight: 900;
                color: #092E52;
                margin-bottom: 0.5rem;
            }

            .feature-desc {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1.16rem;
                color: #425466;
                line-height: 1.5; 
                margin: 0 auto;
            }

            /* Two Tap Unlocks Section Styles */
            .unlocks-section {
                background-color: #ffffff;
                padding: 5rem 0;
            }

            .unlocks-heading {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 3rem;
                font-weight: 900;
                color: #092E52;
                margin-bottom: 3rem;
            }

            .process-steps {
                display: flex;
                justify-content: space-between;
                gap: 2rem;
            }

            .process-step {
                flex: 1;
            }

            .phone-mockupx {
                margin-bottom: 2rem;
            }

            .phone-frame {
                background-color: #092E52;
                border-radius: 1.5rem;
                padding: 1rem;
                width: 100%;
                height: 250px;
                position: relative;
            }

            .phone-content {
                background-color: white;
                border-radius: 1rem;
                padding: 1.5rem;
                height: 100%;
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .content-placeholder {
                background-color: #eee;
                height: 20px;
                border-radius: 0.5rem;
            }

            .content-placeholder.large {
                height: 60px;
            }

            .unlock-button {
                background-color: #092E52;
                color: white;
                border-radius: 2rem;
                padding: 0.7rem;
                text-align: center;
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-weight: bold;
                margin-top: auto;
            }

            .subscribe-button {
                background-color: #eee;
                border-radius: 2rem;
                padding: 0.7rem;
                text-align: center;
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-weight: bold;
            }

            .bank-button {
                background-color: white;
                border: 1px solid #eee;
                border-radius: 2rem;
                padding: 0.7rem 1.5rem;
                text-align: center;
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-weight: bold;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-top: auto;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            }

            .bank-icon {
                display: inline-flex;
            }

            .unlock-small-button {
                background-color: #eee;
                border-radius: 2rem;
                padding: 0.5rem;
                text-align: center;
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 0.9rem;
            }

            .success-message {
                background-color: white;
                border: 1px solid #eee;
                border-radius: 2rem;
                padding: 0.7rem 1.5rem;
                text-align: center;
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-weight: bold;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                margin-top: auto;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            }

            .success-icon {
                display: inline-flex;
            }

            .step-title {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 1.2rem;
                font-weight: 900;
                color: #092E52;
                margin-bottom: 0.5rem;
            }

            .step-desc {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1rem;
                color: #425466;
                line-height: 1.5;
            }
        
        
            .calculator-section {
                background-color: #092E52;
                color: white;
                padding: 8rem 0;
                text-align: center;
            }

            .section-container1 {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 2rem;
            }

            .calculator-heading {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 3rem;
                font-weight: 900;
                margin-bottom: 1rem;
                text-align: justify;
            }

            .calculator-subtitle {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1.3rem;
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 3rem;
                line-height: 1.4;
                max-width: 800px;
                text-align: justify;
            }

            .calculator-card {
                background-color: white;
                border-radius: 1rem;
                padding: 2rem;
                color: #092E52;
                margin-bottom: 2.5rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .calculator-card-title {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 1.7rem;
                font-weight: 900;
                margin-bottom: 2rem;
                text-align: left;
            }

            .calculator-inputs {
                display: flex;
                flex-wrap: wrap;
                gap: 1rem;
                margin-bottom: 2rem;
                justify-content: space-between;
            }

            .input-group2 {
                flex: 1;
                min-width: 200px;
                text-align: left;
            }

            label {
                display: block;
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1rem;
                margin-bottom: 0.5rem;
                color: #425466;
                font-weight: 550;
            }

            .select-wrapper {
                position: relative;
            }

            .select-wrapper::after {
                content: '';
                position: absolute;
                right: 15px;
                top: 50%;
                transform: translateY(-50%);
                width: 0;
                height: 0;
                border-left: 5px solid transparent;
                border-right: 5px solid transparent;
                border-top: 5px solid #425466;
                pointer-events: none;
            }

            .calculator-select {
                width: 100%;
                padding: 0.8rem 1rem;
                border: 1px solid #e2e8f0;
                border-radius: 0.5rem;
                appearance: none;
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1rem;
                color: #092E52;
                background-color: white;
            }

            .calculator-results {
                background-color: #f7f9fc;
                border-radius: 0.5rem;
                padding: 1.5rem;
                display: flex;
                justify-content: space-between;
                margin-bottom: 1rem;
            }

            .result-group {
                text-align: left;
            }

            .result-label {
                display: block;
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1rem;
                color: #425466;
                margin-bottom: 0.5rem;
            }

            .result-value {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 1.8rem;
                font-weight: bold;
                color: #092E52;
            }

            .per-month {
                font-size: 1rem;
                font-weight: normal;
                color: #425466;
            }

            .fee-note {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 0.9rem;
                color: #425466;
                text-align: left;
            }

            .btn {
                padding: 0.8rem 2rem;
                border-radius: 2rem;
                font-weight: 600;
                cursor: pointer;
                text-decoration: none;
                border: none;
                font-size: 1rem;
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                display: inline-block;
            }

            

            .btn-primary {
                background-color: #6FE7DD;
                color: #092E52;
            }

            .calculator-results {
                background-color: #f7f9fc;
                border-radius: 0.5rem;
                padding: 1.5rem 2rem;
                display: flex;
                justify-content: space-between;
                margin-bottom: 1rem;
            }

            .result-group {
                text-align: left;
            }

            .result-label {
                display: block;
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1rem;
                color: #425466;
                margin-bottom: 0.5rem;
            }

            .result-value {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-weight: bold;
                color: #092E52;
                display: flex;
                align-items: baseline;
            }

            .pound-sign {
                font-size: 1.3rem;
                margin-right: 0.1rem;
            }

            #estimated-income, #freckle-cost {
                font-size: 2rem;
            }

            .per-month {
                font-size: 1rem;
                font-weight: normal;
                color: #425466;
                margin-left: 0.2rem;
            }
        
        
            .cms-section {
                background-color: #f5f5f7;
                padding: 8rem 0;
            }

            .section-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 2rem;
                position: relative;
            }

            .cms-heading {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 3rem;
                font-weight: 900;
                color: #092E52;
                margin-bottom: 1rem;
            }

            .cms-subtitle {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1.3rem;
                color: #425466;
                margin-bottom: 3rem;
                line-height: 1.6;
            }

            .carousel-navigation {
                display: flex;
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .nav-button {
                background: none;
                border: none;
                cursor: pointer;
                padding: 0.5rem;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .cms-carousel {
                overflow: hidden;
                position: relative;
                margin-bottom: 3rem;
            }

            .carousel-container {
                display: flex;
                transition: transform 0.5s ease;
                margin-left: -1rem;
                /* Offset to align first visible slide */
            }

            .carousel-slide {
                padding: 0 0.5rem;
                flex-shrink: 0;
            }

            .cms-card {
                background-color: white;
                border-radius: 1rem;
                padding: 2rem;
                display: flex;
                flex-direction: column;
                align-items: center;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                height: 100%;
                min-height: 320px;
            }

            .cms-logo {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 150px;
                margin-bottom: 2rem;
            }

            .logo-img {
                max-width: 100%;
                max-height: 100%;
            }

            .cms-card-title {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 1.5rem;
                font-weight: bold;
                color: #092E52;
                margin-bottom: 0.5rem;
                text-align: center;
            }

            .cms-card-desc {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1rem;
                color: #425466;
                text-align: center;
            }

            .sdk-note {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1.1rem;
                color: #425466;
            }

            .sdk-note strong {
                font-weight: bold;
                color: #092E52;
            }

            /* Responsive adjustments */
            @media (max-width: 768px) {
                .carousel-slide {
                    min-width: 80%;
                }

                .cms-carousel {
                    padding-right: 20%;
                    /* Adjust for mobile */
                }
            }

            .testimonial-section {
                background-color: #ffffff;
                padding: 5rem 0;
            }

            .section-container3 {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 2rem;
            }

            .testimonial-content { 
                margin: 0 auto;
                position: relative;
                padding-top: 2rem;
            }

            .quote-mark {
                position: absolute;
                top: 0;
                left: 0;
                transform: translateY(-50%);
            }

            .testimonial-quote {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 1.75rem;
                line-height: 1.5;
                color: #092E52;
                font-weight: 500;
                margin: 0 0 1.5rem 0;
                padding: 0;
                border: none;
                font-weight: bold;
                text-align: left;
            }

            .testimonial-author {
                margin-top: 1.5rem;
            }

            .author-title {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1rem;
                color: #425466;
                margin: 0;
            }

            .author-company {
                font-style: normal;
            }

            /* Responsive adjustments */
            @media (max-width: 768px) {
                .testimonial-quote {
                    font-size: 1.25rem;
                }

                .quote-mark {
                    transform: scale(0.8) translateY(-50%);
                }
            }

            .quote-banner {
                background-color: #6FE7DD;
                /* Turquoise background */
                padding: 8rem 0;
            }

            .section-container4 {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 2rem;
            }

            .quote-content { 
                margin-top: 5px;
                margin: 0 auto;
                text-align: left;
            }

            .quote-text {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 3.2rem;
                line-height: 1.2;
                color: #092E52;
                /* Navy blue text */
                font-weight: 900;
                margin: 0 0 1rem 0;
            }

            .quote-author {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 1rem;
                color: #092E52;
                /* Navy blue text */
                margin: 0 0 2rem 0;
            }

            .quote-cta {
                margin-top: 2rem;
            }

            .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;
            }

            .btn-dark {
                background-color: #092E52;
                /* Navy blue button */
                color: white;
            }

            /* Responsive adjustments */
            @media (max-width: 768px) {
                .quote-text {
                    font-size: 2rem;
                }

                .quote-banner {
                    padding: 3rem 0;
                }
            }

            .site-footer {
                background-color: #092E52;
                /* Navy blue background */
                color: white;
                padding: 2rem 0 2rem;
            }

            .footer-container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 2rem;
            }

            .footer-content {
                display: flex;
                flex-wrap: wrap;
                gap: 4rem;
                margin-bottom: 0rem;
            }

            .footer-logo {
                flex: 1;
                min-width: 150px;
            }

            .logo {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 2rem;
                font-weight: bold;
                color: white;
                text-decoration: none;
            }

            .footer-links {
                flex: 3;
                display: flex;
                flex-wrap: wrap;
                gap: 2rem;
            }

            .footer-column {
                flex: 1;
                min-width: 150px;
            }

            .footer-heading {
                font-family: 'Avenir', 'Helvetica Neue', sans-serif;
                font-size: 1.1rem;
                font-weight: bold;
                margin-bottom: 1.5rem;
                color: #6FE7DD;
                /* Turquoise heading */
            }

            .footer-menu {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-menu li {
                margin-bottom: 0.75rem;
            }

            .footer-menu a {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                color: rgba(255, 255, 255, 0.8);
                text-decoration: none;
                font-size: 0.9rem;
                transition: color 0.2s ease;
            }

            .footer-menu a:hover {
                color: #6FE7DD;
                /* Turquoise hover color */
            }

            .footer-bottom {
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                padding-top: 1rem;
                text-align: center;
            }

            .copyright {
                font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
                font-size: 0.9rem;
                color: rgba(255, 255, 255, 0.6);
            }

            /* Responsive adjustments */
            @media (max-width: 768px) {
                .footer-content {
                    flex-direction: column;
                    gap: 2rem;
                }

                .footer-links {
                    flex-direction: column;
                    gap: 2rem;
                }
            }
        
        
            /* Mobile Responsiveness */
            @media (max-width: 768px) {
                /* Navigation */ .navbar {
                    padding: 1rem 1.5rem;
                    flex-direction: column;
                    gap: 1rem;
                }

                .nav-buttons {
                    width: 100%;
                    justify-content: center;
                }

                .feature-card {
                    text-align: center;
                }

                /* Hero section */
                .main-content {
                    flex-direction: column;
                    padding: 2rem 0rem 0rem 0rem;
                }

                .content-left {
                    width: 100%;
                    padding: 2rem;
                }
                
                .content-right {
                    width: 100%;
                    padding: 0rem;
                }


                .main-heading {
                    font-size: 3rem;
                }

                .subtitle {
                    font-size: 1.2rem;
                }

                .content-right {
                    margin-top: 3rem;
                }

                .phone-mockup {
                    width: 100%;
                    max-width: 320px;
                }

                /* Why section */
                .why-section {
                    padding: 3rem 1.5rem;
                }

                .why-heading {
                    font-size: 2.5rem;
                    text-align: center;
                }

                .why-subtitle {
                    text-align: center;
                    margin-bottom: 3rem;
                }

                .stats-container {
                    flex-direction: column;
                    gap: 3rem;
                }

                .stat-block {
                    padding: 0;
                    align-items: center;
                }

                .stat-block:not(:last-child)::after {
                    display: none;
                }

                .stat-value {
                    text-align: center;
                }

                .stat-desc {
                    text-align: center;
                    max-width: 300px;
                }

                /* Charge section */
                .charge-section .section-container {
                    flex-direction: column;
                    gap: 3rem;
                }

                .phone-mockup {
                    justify-content: center;
                }

                .phone-frame {
                    width: 300px;
                    height: 480px;
                }

                .charge-heading {
                    font-size: 2.5rem;
                    text-align: center;
                }

                .charge-desc, .charge-desc-secondary {
                    text-align: center;
                }

                /* Features section */
                .features-section {
                    padding: 3rem 1.5rem;
                }

                .features-heading {
                    font-size: 2.5rem;
                    text-align: center;
                }

                .features-subtitle {
                    text-align: center;
                }

                .features-grid {
                    flex-direction: column;
                    gap: 3rem;
                }

                /* Unlocks section */
                .unlocks-section {
                    padding: 3rem 1.5rem;
                }

                .unlocks-heading {
                    font-size: 2.5rem;
                    text-align: center;
                }

                .process-steps {
                    flex-direction: column;
                }

                /* Calculator section */
                .calculator-section {
                    padding: 3rem 1.5rem;
                }

                .calculator-heading {
                    font-size: 2.5rem;
                }

                .calculator-card-title {
                    text-align: center;
                    font-size: 1.5rem;
                }

                .calculator-inputs {
                    flex-direction: column;
                }

                .calculator-results {
                    flex-direction: column;
                    gap: 2rem;
                    align-items: center;
                }

                .result-group {
                    text-align: center;
                }

                .fee-note {
                    text-align: center;
                }

                /* CMS section */
                .cms-section {
                    padding: 3rem 1.5rem;
                }

                .cms-heading {
                    font-size: 2.5rem;
                    text-align: center;
                }

                .cms-subtitle {
                    text-align: center;
                }

                .carousel-navigation {
                    justify-content: center;
                }

                .sdk-note {
                    text-align: center;
                }

                /* Testimonial section */
                .testimonial-section {
                    padding: 3rem 1.5rem;
                }

                .testimonial-quote {
                    font-size: 1.2rem;
                    text-align: center;
                }

                .testimonial-author {
                    text-align: center;
                }

                .quote-mark {
                    left: 50%;
                    transform: translateX(-50%) translateY(-50%);
                }

                /* Quote banner */
                .quote-banner {
                    padding: 3rem 1.5rem;
                }

                .quote-text {
                    font-size: 2rem;
                    text-align: center;
                }

                .quote-author {
                    text-align: center;
                }

                .quote-cta {
                    text-align: center;
                }

                /* Footer */
                .footer-content {
                    flex-direction: column;
                    gap: 2rem;
                }

                .footer-logo {
                    text-align: center;
                }

                .footer-links {
                    flex-direction: column;
                    gap: 2rem;
                }

                .footer-column {
                    text-align: center;
                }
            }

            /* Additional responsive adjustments for very small screens */
            @media (max-width: 480px) {
                .main-heading {
                    font-size: 2.5rem;
                }

                .phone-frame {
                    width: 280px;
                    height: 450px;
                }

                .btn {
                    padding: 0.8rem 1.5rem;
                    font-size: 0.9rem;
                }

                .calculator-select {
                    font-size: 0.9rem;
                }

                #estimated-income, #freckle-cost {
                    font-size: 1.8rem;
                }

                .stats-container {
                    gap: 2.5rem;
                }

                .stat-value {
                    font-size: 3.5rem;
                }

                /* Adjust element spacing for better mobile experience */
                .section-container, .section-container1, .section-container2, .section-container3, .section-container4 {
                    padding: 0 1rem;
                }

                /* Make sure horizontal padding is consistent */
                .calculator-card, .cms-card, .phone-content {
                    padding: 1.5rem 1rem;
                }

                /* Ensure buttons are properly sized on small screens */
                .nav-buttons {
                    flex-direction: column;
                    gap: 0.8rem;
                }

                .nav-buttons .btn {
                    width: 100%;
                    text-align: center;
                }
            }

            /* Fix for medium-sized screens (tablets) */
            @media (min-width: 769px) and (max-width: 1024px) {
                .section-container, .section-container1, .section-container2, .section-container3, .section-container4 {
                    padding: 0 2rem;
                }

                .main-content {
                    padding: 2rem;
                }

                .features-grid {
                    gap: 1.5rem;
                }

                .process-steps {
                    gap: 1.5rem;
                }

                .calculator-inputs {
                    flex-wrap: wrap;
                }

                .input-group2 {
                    min-width: 45%;
                }

                .stat-block {
                    padding: 0 1rem;
                }

                .stat-value {
                    font-size: 3.5rem;
                }

                .phone-frame {
                    width: 300px;
                }
            }

            /* Ensure everything works on landscape orientation */
            @media (max-height: 600px) and (orientation: landscape) {
                .main-content {
                    flex-direction: row;
                    align-items: flex-start;
                }

                .content-left, .content-right {
                    width: 50%;
                }

                .phone-mockup {
                    max-width: 250px;
                }

                .phone-frame {
                    height: 400px;
                }
            }



            @media (min-width:1024px) {
                .main-content {
                    display: flex;
                    padding: 0rem 0rem 0rem 5rem;
                    align-items: center;
                    justify-content: end;
                }

                .content-left {
                    width: 50%; 
                }
                .cms-subtitle {
                    max-width: 49%;
                }
            }
        
        
            /* Responsive navigation styles */
            @media (max-width: 768px) {
                .navbar {
                    padding: 1rem 1.5rem;
                    flex-direction: column;
                    align-items: center;
                    gap: 1.2rem;
                }

                .logo {
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    margin-bottom: 0.5rem;
                }

                .logo svg {
                    width: 100px;
                    height: auto;
                }

                .nav-buttons {
                    width: 100%;
                    justify-content: center;
                    gap: 0.8rem;
                }

                .btn {
                    padding: 0.7rem 1.2rem;
                    font-size: 0.9rem;
                    width: 48%;
                    text-align: center;
                }
            }

            /* Mobile menu for very small screens */
            @media (max-width: 480px) {
                .navbar {
                    padding: 1rem;
                }

                .nav-buttons {
                    flex-direction: column;
                    gap: 0.6rem;
                }

                .btn {
                    width: 100%;
                    padding: 0.7rem 1rem;
                }

                .navbar::after {
                    width: 90%;
                    left: 5%;
                }
            }

            /* Hamburger menu for mobile - toggle functionality */
            @media (max-width: 768px) {
                .navbar {
                    position: relative;
                }

                /* Add hamburger menu button */
                .menu-toggle {
                    display: block;
                    position: absolute;
                    top: 1rem;
                    right: 1.5rem;
                    width: 30px;
                    height: 22px;
                    cursor: pointer;
                    z-index: 20;
                }

                .menu-toggle span {
                    display: block;
                    position: absolute;
                    height: 3px;
                    width: 100%;
                    background: white;
                    border-radius: 3px;
                    opacity: 1;
                    left: 0;
                    transform: rotate(0deg);
                    transition: .25s ease-in-out;
                }

                .menu-toggle span:nth-child(1) {
                    top: 0px;
                }

                .menu-toggle span:nth-child(2), .menu-toggle span:nth-child(3) {
                    top: 9px;
                }

                .menu-toggle span:nth-child(4) {
                    top: 18px;
                }

                /* Menu open state */
                .menu-toggle.open span:nth-child(1) {
                    top: 9px;
                    width: 0%;
                    left: 50%;
                }

                .menu-toggle.open span:nth-child(2) {
                    transform: rotate(45deg);
                }

                .menu-toggle.open span:nth-child(3) {
                    transform: rotate(-45deg);
                }

                .menu-toggle.open span:nth-child(4) {
                    top: 9px;
                    width: 0%;
                    left: 50%;
                }

                /* Nav buttons collapse/expand styles */
                .nav-buttons {
                    display: none;
                    opacity: 0;
                    transform: translateY(-20px);
                    transition: opacity 0.3s ease, transform 0.3s ease;
                }

                .nav-buttons.active {
                    display: flex;
                    opacity: 1;
                    transform: translateY(0);
                }

                /* Logo positioning when menu is open */
                .navbar.menu-open .logo {
                    margin-bottom: 1.5rem;
                }
            }
        


             @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);
                }
            }

            


            .tooltip-container {
    position: relative;
    display: inline-block;
    margin-left: 8px;
    cursor: help;
    float: inline-end;
}

.tooltip-icon {
    transition: opacity 0.2s ease;
}

.tooltip-container:hover .tooltip-icon {
    opacity: 0.7;
}

.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    pointer-events: none;
        width: max-content;
}

.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.tooltip-content {
    background: #425466;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    max-width: 300px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #425466;
}