    
               @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 {
                background-color: #6FE7DD;
                color: #092E52;
            }
        
        .btn:hover { 
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Hero section styles */
        .hero-section {
            display: flex;
            align-items: center;
            padding: 4rem 5rem;
            min-height: calc(100vh - 100px);
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
        .paper-plane {
            width: 80%;
            max-width: 500px;
            transform: rotate(-10deg);
        }
        
        .hero-content {
            flex: 1;
            padding-left: 2rem;
        }
        
        .hero-heading {
            font-family: 'Avenir', 'Helvetica Neue', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-text {
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 600px;
        }
        
        /* 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;
            }
            
            .hero-section {
                padding: 3rem;
            }
            
            .hero-heading {
                font-size: 3.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);
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .hero-section {
                flex-direction: column;
                padding: 2rem;
                text-align: center;
            }
            
            .hero-image {
                margin-bottom: 2rem;
                order: 1;
            }
            
            .hero-content {
                order: 2;
                padding-left: 0;
            }
            
            .hero-heading {
                font-size: 3rem;
            }
            
            .hero-text {
                margin: 0 auto;
            }
        }
        
        @media (max-width: 480px) {
            .navbar {
                padding: 1rem;
            }
            
            .logo {
                font-size: 2rem;
            }
            
            .hero-section {
                padding: 1.5rem;
            }
            
            .hero-heading {
                font-size: 2.5rem;
            }
            
            .hero-text {
                font-size: 1rem;
            }
            
            .paper-plane {
                width: 90%;
            }
        }
    
            
            /* 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;
                }
            }

                        .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;
            }
        
        
            .editors-section {
    background-color: #ffffff;
    padding: 8rem 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-family: 'Avenir', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #092E52;
    margin-bottom: 2rem;
}

.section-text {
    font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .section-text {
        font-size: 1.4rem;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .editors-section {
        padding: 4rem 0;
    }
    
    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-text {
        font-size: 1.2rem;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .editors-section {
        padding: 3rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .section-text {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

.revenue-section {
    background-color: #f5f5f7; /* Light gray background */
    padding: 8rem 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-family: 'Avenir', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #092E52; /* Navy blue text */
    margin-bottom: 2rem;
}

.section-text {
    font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #4a5568; /* Dark gray text */
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .section-text {
        font-size: 1.4rem;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .revenue-section {
        padding: 4rem 0;
    }
    
    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-text {
        font-size: 1.2rem;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .revenue-section {
        padding: 3rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .section-text {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}
.taps-section {
    background-color: #ffffff; /* White background */
    padding: 8rem 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-family: 'Avenir', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: #092E52; /* Navy blue text */
    margin-bottom: 2rem;
}

.section-text {
    font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #4a5568; /* Dark gray text */
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .section-text {
        font-size: 1.4rem;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .taps-section {
        padding: 4rem 0;
    }
    
    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-text {
        font-size: 1.2rem;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .taps-section {
        padding: 3rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .section-text {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

.impact-section {
    background-color: #6FE7DD; /* Turquoise background */
    padding: 8rem 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-family: 'Avenir', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: #092E52; /* Navy blue text */
    margin-bottom: 1rem;
}

.section-text {
    font-family: 'Avenir Next', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #092E52; /* Navy blue text instead of gray */
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .section-text {
        font-size: 1.4rem;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .impact-section {
        padding: 4rem 0;
    }
    
    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .section-text {
        font-size: 1.2rem;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .impact-section {
        padding: 3rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-heading {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .section-text {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}


            .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;
                }
            }
        

            @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-outline, .btn-outline:hover {
                background-color: white;
                color: #092E52;
            }

            .btn-primary:hover {
                background-color: white;
                color: #092E52;
            }
                        :not(.btn-check) + .btn:active {
                background-color: white !important;
                color: #092E52;
            }

         