    body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
            color: #333;
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

          .ctabutton{
            background-color: #007bff;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: 500;
            transition: background-color 0.3s ease, transform 0.2s ease;
            display: inline-block;
            position: relative !important;
            left: -23em !important;
            top:23em !important;
        }
      /* Navigation */
        nav {
            background-color: #ffffff;
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav .logo {
            font-size: 1.8em;
            font-weight: bold;
            color: #007bff; /* Primary brand color */
        }

        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav ul li a:hover, nav ul li a.active {
            color: #007bff;
        }

        /* Hero Section */
        .hero {
            background: #e9ecef; /* Light background for hero */
			background-image: url("../images/cortexcartbackground.png");
          	background-repeat: no-repeat;
          	background-size: cover;
          	height:500px;
          	width: 100%;
            color: #212529;
            padding: 80px 0;
            text-align: center;
        }

        .hero h1 {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero p.lead {
            font-size: 1.3em;
            margin-bottom: 30px;
            color: #495057;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background-color: #007bff;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: 500;
            transition: background-color 0.3s ease, transform 0.2s ease;
            display: inline-block;
        }

        .cta-button:hover {
            background-color: #0056b3;
            transform: translateY(-2px);
        }

        /* Sections */
        .section {
            padding: 60px 0;
            text-align: center;
        }

        .section.bg-light {
            background-color: #ffffff;
        }

        .section-title {
            font-size: 2.2em;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .section-subtitle {
            font-size: 1.1em;
            color: #555;
            margin-bottom: 40px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
            text-align: left;
        }

        .feature-item {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border: 1px solid #e9ecef;
        }

        .feature-item.highlight { /* Example for a highlighted feature */
             border-top: 4px solid #007bff;
        }

        .feature-item .icon {
            font-size: 2.5em; /* Placeholder for actual icons */
            color: #007bff;
            margin-bottom: 15px;
            /* Example: You would use <i> tags with icon font classes or SVG here */
        }

        .feature-item h3 {
            font-size: 1.4em;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .feature-item p {
            font-size: 0.95em;
            color: #555;
        }

        /* How It Works Section */
        .how-it-works-steps {
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            margin-top: 40px;
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
        }

        .step {
            flex-basis: 30%; /* Adjust as needed */
            padding: 20px;
            text-align: center;
            max-width: 300px; /* Max width for each step */
            margin-bottom: 20px; /* Space for wrapped items */
        }

        .step .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            border-radius: 50%;
            background-color: #007bff;
            color: white;
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .step h3 {
            font-size: 1.3em;
            margin-bottom: 10px;
        }

        /* Call to Action Section */
        .cta-section {
            background-color: #007bff;
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2em;
            margin-bottom: 20px;
        }
        .cta-section p {
            font-size: 1.1em;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section .cta-button {
            background-color: #ffffff;
            color: #007bff;
            font-weight: bold;
        }
         .cta-section .cta-button:hover {
            background-color: #f0f0f0;
        }
	/* Pricing section */
          /* Pricing Section */
        .pricing-section {
            padding: 60px 0;
        }

        .pricing-toggle {
            text-align: center;
            margin-bottom: 40px;
        }

        .pricing-toggle button {
            background-color: #e9ecef;
            border: none;
            padding: 10px 20px;
            margin: 0 5px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 1em;
            color: #495057;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .pricing-toggle button.active {
            background-color: #007bff;
            color: white;
        }


        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            align-items: stretch; /* Makes cards same height if content differs */
        }

        .pricing-plan {
            background-color: #ffffff;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            display: flex;
            flex-direction: column; /* Align items vertically */
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pricing-plan:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .pricing-plan.popular {
            border-top: 4px solid #007bff;
            position: relative;
        }
        .pricing-plan.popular::before {
            content: "Most Popular";
            position: absolute;
            top: -1px; /* Adjust to align with border */
            left: 50%;
            transform: translateX(-50%) translateY(-100%);
            background-color: #007bff;
            color: white;
            padding: 5px 15px;
            font-size: 0.8em;
            font-weight: bold;
            border-radius: 20px 20px 0 0; /* Rounded top corners */
        }


        .pricing-plan h3 {
            font-size: 1.6em;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .pricing-plan .price {
            font-size: 2.5em;
            font-weight: bold;
            color: #007bff;
            margin-bottom: 10px;
        }

        .pricing-plan .price span.term {
            font-size: 0.5em;
            font-weight: normal;
            color: #6c757d;
        }

        .pricing-plan p.description {
            font-size: 0.95em;
            color: #495057;
            margin-bottom: 25px;
            min-height: 50px; /* Ensure some space for description */
        }

        .pricing-plan ul.features {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
            text-align: left;
            flex-grow: 1; /* Allows feature list to expand */
        }

        .pricing-plan ul.features li {
            margin-bottom: 12px;
            font-size: 0.95em;
            color: #333;
            display: flex;
            align-items: center;
        }
        .pricing-plan ul.features li::before {
            content: '✓'; /* Checkmark */
            color: #28a745; /* Green checkmark */
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2em;
        }


        /* Footer */
        footer {
            background-color: #2c3e50;
            color: #bdc3c7;
            text-align: center;
            padding: 30px 0;
            font-size: 0.9em;
        }

        footer p {
            margin: 0;
        }
        footer a {
            color: #3498db;
            text-decoration: none;
        }
         footer a:hover {
            text-decoration: underline;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.4em;
            }
            .hero p.lead {
                font-size: 1.1em;
            }
            nav ul {
                flex-direction: column; /* Simple mobile nav example */
                align-items: center;
                width: 100%;
                display: none; /* Hidden by default, toggle with JS */
            }
            nav ul.active {
                display: flex; /* Show when active */
            }
            nav ul li {
                margin: 10px 0;
            }
            .how-it-works-steps {
                flex-direction: column;
                align-items: center;
            }
            .step {
                flex-basis: 100%;
            }
            .pricing-grid {
                grid-template-columns: 1fr; /* Stack plans on smaller screens */
            }
            .pricing-plan.popular::before {
                font-size: 0.7em;
                padding: 4px 10px;
            }
        }

