/* Import a modern sans‑serif from Google Fonts. */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

        :root {
            --primary: #072a4f;        /* dark blue used for headings and nav */
            --secondary: #0f477a;      /* medium blue for buttons */
            --accent: #f25d34;         /* orange for highlights */
            --light-bg: #f4f8fd;       /* very light blue for section backgrounds */
            --card-bg: #ffffff;        /* white for cards */
            --text: #203b55;           /* dark grey/blue for body copy */
            --border-radius: 0.75rem;  /* consistent rounding on cards */
            --tagline: #2aba7d;        /* green colour for the hero tagline */
        }

        /* Basic reset */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.5;
        }

        a {
            text-decoration: none;
            color: var(--primary);
        }

        /* Container to centre content and set max width */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ----- Navigation ----- */
        header {
            position: sticky;
            top: 0;
            z-index: 10;
            background: #ffffff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.25rem;
        }

        .logo span {
            margin-left: 0.5rem;
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            font-size: 0.95rem;
        }

        .nav-ctas {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.65rem 1rem;
            border-radius: 2rem;
            font-weight: 600;
            border: 2px solid transparent;
            transition: background 0.2s, border-color 0.2s;
        }

        .btn-primary {
            background: var(--secondary);
            color: #ffffff;
        }

        .btn-primary:hover {
            background: #0d3b63;
        }

        .btn-outline {
            background: transparent;
            color: var(--secondary);
            border-color: var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: #ffffff;
        }

        .btn-accent {
            background: var(--accent);
            color: #ffffff;
        }

        .btn-accent:hover {
            background: #d54826;
        }

        /* ----- Hero Section ----- */
        .hero {
            background: var(--light-bg);
            padding: 4rem 0 3rem 0;
        }

        .hero .content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }

        .hero-text {
            flex: 1 1 340px;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            max-width: 500px;
        }

        /* Styling for the hero tagline */
        .hero-text small {
            display: block;
            font-size: 0.9rem;
            color: var(--tagline);
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .hero-card {
            flex: 1 1 340px;
            background: var(--card-bg);
            border: 1px solid #e4eaf5;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.06);
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 0.75rem;
        }

        .card-grid .box {
            background: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 0.75rem;
            text-align: left;
            font-size: 0.85rem;
        }

        .card-grid .box strong {
            display: block;
            margin-bottom: 0.3rem;
            color: var(--primary);
        }

        /* ----- Section Headings ----- */
        .section {
            padding: 4rem 0;
        }

        .section.light {
            background: var(--light-bg);
        }

        .section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .section p.lead {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 2rem auto;
        }

        /* ----- Feature List ----- */
        .features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .features-list li {
            list-style: none;
            background: var(--card-bg);
            border: 1px solid #e4eaf5;
            border-radius: var(--border-radius);
            padding: 1rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .features-list li span.icon {
            font-size: 1.5rem;
            color: var(--accent);
        }

        .features-list li strong {
            display: block;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        /* ----- 360 Flow Grid ----- */
        .flow-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
        }

        .flow-card {
            background: var(--card-bg);
            border: 1px solid #e4eaf5;
            border-radius: var(--border-radius);
            padding: 1rem;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
        }

        .flow-card strong {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary);
        }

        /* Icon styling for flow cards */
        .flow-card .icon {
            font-size: 1.8rem;
            color: var(--accent);
            flex-shrink: 0;
            line-height: 1;
        }

        /* ----- Template grid ----- */
        .template-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
        }

        .template-card {
            background: var(--card-bg);
            border: 1px solid #e4eaf5;
            border-radius: var(--border-radius);
            padding: 1rem;
        }

        .template-card strong {
            display: block;
            margin-bottom: 0.3rem;
            color: var(--primary);
        }

        /* ----- Steps grid ----- */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1rem;
        }

        .step-card {
            background: var(--card-bg);
            border: 1px solid #e4eaf5;
            border-radius: var(--border-radius);
            padding: 1rem;
        }

        .step-card strong {
            display: block;
            margin-bottom: 0.3rem;
            color: var(--primary);
        }

        /* ----- Pricing section ----- */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            align-items: stretch;
        }

        .pricing-card {
            /* Ensure the pricing card remains white even if external scripts inject styles */
            background: var(--card-bg) !important;
            border: 1px solid #e4eaf5;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .pricing-card header {
            margin-bottom: 1rem;
        }

        .pricing-card .price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .pricing-card ul {
            list-style: none;
            margin-bottom: 1rem;
        }

        .pricing-card ul li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pricing-card ul li::before {
            content: '✔️';
            color: var(--accent);
        }

        .pricing-card footer {
            margin-top: auto;
            text-align: center;
            /* Remove any injected background colour from external scripts */
            background: transparent !important;
        }

        /* ----- Testimonials ----- */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .testimonial-card {
            background: var(--card-bg);
            border: 1px solid #e4eaf5;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            font-style: italic;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }

        /* ----- FAQ ----- */
        details {
            background: var(--card-bg);
            border: 1px solid #e4eaf5;
            border-radius: var(--border-radius);
            margin-bottom: 0.75rem;
            padding: 0.75rem 1rem;
        }

        summary {
            font-weight: 600;
            cursor: pointer;
        }

        details[open] {
            padding-bottom: 1rem;
        }

        /* ----- CTA & Footer ----- */
        .cta-section {
            background: var(--primary);
            color: #ffffff;
            text-align: center;
            padding: 3rem 1rem;
        }

        .cta-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        footer {
            background: var(--primary);
            color: #ffffff;
            padding: 1rem 0;
        }

        footer .footer-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        footer .copyright {
            font-size: 0.85rem;
        }

        /* Toggle button for mobile navigation */
        #menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.75rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* Container that holds the nav links and CTAs; collapsible on mobile */
        .nav-collapsible {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        /* Responsive tweaks */
        @media (max-width: 600px) {
            /* Show toggle button and collapse the navigation into a dropdown */
            #menu-toggle {
                display: block;
            }
            .nav-collapsible {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                padding-bottom: 1rem;
            }
            .nav-collapsible.open {
                display: flex;
            }
            .nav-links {
                flex-direction: column;
                gap: 1rem;
            }
            .nav-ctas {
                flex-direction: column;
                gap: 0.75rem;
            }
            .nav {
                flex-wrap: wrap;
            }
        }