        
    /* Toast Notification Styles */
    .toast {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background-color: #10b981; /* Success green */
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        font-size: 1rem;
        font-weight: 600;
        z-index: 1000;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .toast.hidden {
        display: none;
    }
    
    .toast.show {
        opacity: 1;
        transform: translateY(0);
    }
    
    
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #0f172a;
            --accent: #06b6d4;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
            --success: #10b981;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        
        body {
            line-height: 1.5;
            color: var(--dark);
            background-color: var(--light);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        header {
            background-color: var(--light);
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 0;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            margin-right: 0.5rem;
            width: 2rem;
            height: 2rem;
            background-color: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-link {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
            border: none;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }
        
        .hero {
            padding: 5rem 0;
            display: flex;
            align-items: flex-start;
            background: linear-gradient(120deg, #f0f9ff 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 .895-3 2-2 .895-2 2 .895 2 2 2zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232563eb' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            z-index: 0;
        }

        .hero .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: clamp(2rem, 5vw, 4rem);
        }
        
        .hero-content {
            width: 55%;
            position: relative;
            z-index: 1;
        }
        
        .hero-image {
            width: 45%;
            position: relative;
            z-index: 1;
        }

        .hero-image svg {
            display: block;
            width: 100%;
            height: auto;
        }
        
        .placeholder-img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
        }
        
        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        
        p {
            margin-bottom: 1.5rem;
            color: var(--gray);
            font-size: 1.125rem;
        }
        
        .subtitle {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 2rem;
        }
        
        .hero-btns {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .features {
            padding: 6rem 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        .feature-icon {
            width: 3rem;
            height: 3rem;
            background-color: rgba(37, 99, 235, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--primary);
        }
        
        .how-it-works {
            padding: 6rem 0;
            background-color: #f1f5f9;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
        }
        
        .step {
            text-align: center;
            width: 23%;
            position: relative;
        }
        
        .step:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 2.5rem;
            right: -15%;
            width: 30%;
            height: 2px;
            background: var(--primary);
        }
        
        .step-number {
            width: 5rem;
            height: 5rem;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        
        .testimonials {
            padding: 6rem 0;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background-color: #e2e8f0;
            margin-right: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--gray);
        }
        
        .author-info h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .author-info p {
            margin-bottom: 0;
            font-size: 0.875rem;
        }
        
        .pricing {
            padding: 6rem 0;
            background-color: #f1f5f9;
        }
        
        .pricing-box {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            text-align: center;
            max-width: 32rem;
            margin: 0 auto;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .price-detail {
            color: var(--gray);
            margin-bottom: 2rem;
        }
        
        .price-features {
            text-align: left;
            margin-bottom: 2rem;
        }
        
        .price-feature {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .check-icon {
            color: var(--success);
            margin-right: 0.75rem;
        }
        
        .cta {
            padding: 5rem 0;
            text-align: center;
            background: linear-gradient(120deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
        }
        
        .cta h2 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .cta p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            max-width: 36rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-light {
            background-color: white;
            color: var(--primary);
        }
        
        .btn-light:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }
        
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .footer-logo-icon {
            margin-right: 0.5rem;
            width: 2rem;
            height: 2rem;
            background-color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: bold;
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }
        
        .footer-heading {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            margin-bottom: 0.75rem;
        }
        
        .footer-link a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .footer-link a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }
        
        @media (max-width: 1024px) {
            h1 {
                font-size: 2.75rem;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
            }

            .hero .container {
                flex-direction: column;
                gap: 2rem;
            }
            
            .hero-content, .hero-image {
                width: 100%;
            }
            
            .hero-image {
                margin-top: 3rem;
            }
            
            .features-grid, .testimonial-grid {
                grid-template-columns: 1fr;
            }
            
            .steps {
                flex-direction: column;
                align-items: center;
            }
            
            .step {
                width: 100%;
                max-width: 16rem;
                margin-bottom: 3rem;
            }
            
            .step:not(:last-child)::after {
                top: auto;
                bottom: -1.5rem;
                right: auto;
                left: 50%;
                transform: translateX(-50%);
                width: 2px;
                height: 1.5rem;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s ease-in-out;
        }

        .modal-content {
            background-color: white;
            margin: 10% auto;
            padding: 2rem;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            animation: slideIn 0.3s ease-in-out;
        }

        .modal-content h2 {
            margin-bottom: 1rem;
            font-size: 1.75rem;
            color: var(--secondary);
        }

        .modal-content p {
            margin-bottom: 1.5rem;
            color: var(--gray);
        }

        .modal-content .form-group {
            margin-bottom: 1rem;
        }

        .modal-content input,
        .modal-content textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            color: var(--secondary);
        }

        .modal-content input:focus,
        .modal-content textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
        }

        .modal-content button {
            width: 100%;
            padding: 0.75rem;
            font-size: 1rem;
            font-weight: bold;
            border: none;
            border-radius: 8px;
            background-color: var(--primary);
            color: white;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .modal-content button:hover {
            background-color: var(--primary-dark);
        }

        .close {
            color: var(--gray);
            float: right;
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close:hover {
            color: var(--primary);
        }
                @media (max-width: 768px) {
            nav {
                flex-direction: column;
                align-items: flex-start;
            }
        
            .nav-links {
                display: none; /* Hide links by default */
                flex-direction: column;
                gap: 1rem;
                width: 100%;
                background-color: var(--light);
                padding: 1rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }
        
            .nav-links.show {
                display: flex; /* Show links when toggled */
            }
        
            .hamburger {
                display: block;
                cursor: pointer;
                font-size: 1.5rem;
                color: var(--primary);
            }
        }
         @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }
        
           
        }
        @media (max-width: 768px) {
            .hero {
                flex-direction: column; /* Stack content vertically */
                text-align: center; /* Center-align text */
                padding: 2rem 1rem; /* Reduce padding */
            }

            .hero .container {
                flex-direction: column;
                gap: 2rem;
            }
        
            .hero-content {
                width: 100%; /* Full width for content */
                margin-bottom: 2rem; /* Add spacing below content */
            }
        
            .hero-image {
                display: block;
                width: min(100%, 30rem);
                margin: 0 auto;
            }
        
            h1 {
                font-size: 2rem; /* Reduce font size for the heading */
            }
        
            .subtitle {
                font-size: 1rem; /* Reduce font size for the subtitle */
            }
        
            .hero-btns {
                flex-direction: column; /* Stack buttons vertically */
                gap: 1rem; /* Add spacing between buttons */
            }
        
            .hero-image svg {
                display: block;
                width: 100%;
                height: auto;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none; /* Hide the hamburger menu on desktop */
            }
        }
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
    
     
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
            margin: 0;
            padding: 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .option {
            background: white;
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .option h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .pricing-section {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            margin: 20px 0;
            border-left: 4px solid #007bff;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-header h3 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        .section-header p {
            color: #6c757d;
            font-size: 1.1rem;
        }
           .pricing-box {
        background-color: white;
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .pricing-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
        
        .transparency-element {
            background: #e3f2fd;
            border-radius: 8px;
            padding: 20px;
            margin: 15px 0;
            border-left: 4px solid #2196f3;
        }
        
        .price-features {
            text-align: left;
            margin: 20px 0;
        }
        
        .price-feature {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #495057;
        }
        
        .check-icon {
            color: #28a745;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #dee2e6;
        }
        
        .comparison-table th {
            background: #f8f9fa;
            font-weight: 600;
            color: #495057;
        }
        
        .highlight {
            background: #fff3cd;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #ffc107;
            margin: 15px 0;
        }

        .trust-bar {
            padding: 3.25rem 0;
            background: #ffffff;
            border-top: 1px solid rgba(15, 23, 42, 0.07);
            border-bottom: 1px solid rgba(15, 23, 42, 0.07);
        }

        .trust-intro {
            max-width: 620px;
            margin: 0 auto 1.6rem;
            text-align: center;
        }

        .trust-intro h2 {
            margin-bottom: 0.6rem;
            color: var(--secondary);
        }

        .trust-logos {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
            max-width: 860px;
            margin: 0 auto;
        }

        .trust-item {
            min-height: 100%;
            display: grid;
            grid-template-columns: 8.25rem 1fr;
            gap: 1.15rem;
            align-items: center;
            padding: 1rem;
            border: 1px solid rgba(15, 23, 42, 0.1);
            border-radius: 8px;
            background: #f8fafc;
            box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
        }

        .trust-logo-frame {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 8.25rem;
            height: 4.75rem;
            padding: 0.65rem;
            border: 1px solid rgba(37, 99, 235, 0.12);
            border-radius: 8px;
            background: #ffffff;
        }

        .trust-logo-frame img {
            display: block;
            width: 100%;
            max-width: 7.25rem;
            height: 3.35rem;
            object-fit: contain;
            object-position: center;
            filter: grayscale(12%);
            transition: filter 0.2s, transform 0.2s;
        }

        .trust-logo-frame img.trust-logo-cmmc {
            width: 4rem;
            height: 4rem;
        }

        .trust-item:hover .trust-logo-frame img {
            filter: grayscale(0%);
            transform: translateY(-1px);
        }

        .trust-item .trust-label {
            display: inline-flex;
            margin-bottom: 0.35rem;
            color: var(--primary);
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .trust-item h3 {
            margin-bottom: 0.35rem;
            color: var(--secondary);
            font-size: 1.08rem;
        }

        .trust-item p {
            margin-bottom: 0;
            color: #475569;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .trust-logos {
                grid-template-columns: 1fr;
            }

            .trust-item {
                grid-template-columns: 1fr;
                justify-items: center;
                text-align: center;
            }
        }
    
