<style>
        .dropbtn.active-drop {
            border-bottom: 2px solid #ffffff;
            padding-bottom: 12px; 
        }
        .step-section {
            padding: 80px 30px;
            background-color: #fff;
            border-top: 1px solid #eee;
        }

        .step-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .step-content h2 {
            font-size: 2.5em;
            color: #F36C21;
            margin-bottom: 20px;
        }

        .step-content p {
            font-size: 1.1em;
            color: #333;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .timeline-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline-step {
            flex: 1 1 250px;
            text-align: center;
            cursor: pointer;
            padding: 20px;
            transition: transform 0.3s ease;
            border-radius: 10px;
        }

        .timeline-step:hover {
            transform: translateY(-5px);
            background-color: #fff3eb;
        }

        .timeline-step h3 {
            color: #F36C21;
            margin: 15px 0 10px;
        }

        .timeline-step p {
            color: #555;
            font-size: 0.95em;
            padding: 0 10px;
        }

        .circle {
            width: 50px;
            height: 50px;
            margin: 0 auto;
            background-color: #F36C21;
            color: white;
            border-radius: 50%;
            font-size: 1.2em;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .timeline-container {
                flex-direction: column;
                gap: 20px;
            }

            .timeline-step {
                flex: 1 1 100%;
            }
        }
        @font-face {
            font-family: 'Gotham Rounded';
            src: url("{% static 'fonts/Gotham Rounded/gothamrnd_medium.otf' %}") format("opentype");
            font-weight: 500; /* Medium weight */
            font-style: normal;
        }
        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #F36C21;
            overflow-x: hidden;
        }
        .navbar {
            background-color: #000000;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap;
            font-family: 'Gotham Rounded', sans-serif;
            border-radius: 14px;
            max-width: 1600px;
            margin: 0 auto;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 20px;             /* Keeps space from top of page */
            left: 50%;
            transform: translateX(-50%);
            transition: transform 0.3s ease;
            z-index: 1000;
            white-space: nowrap;
            overflow: visible; 
        }
        .navbar-left, .navbar-right {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: nowrap;           /* Prevent children from wrapping */
            flex-shrink: 0;              /* Prevent shrinking */
        }
        .navbar-logo {
            height: 40px; /* Adjust the height of the logo */
            margin-right: 10px; /* Space between the logo and "Products" dropdown */
        }
        .navbar a, .dropbtn {
            color: white;
            text-align: center;
            padding: 14px 20px;
            text-decoration: none;
            display: inline-block;
            font-family: 'Gotham Rounded', sans-serif;
        }
        .login-dropdown {
            position: relative;
            display: inline-block;
        }

        .login-btn {
            background-color: #F36C21;
            color: white;
            padding: 14px 20px;
            border: none;
            cursor: pointer;
            font-family: 'Gotham Rounded', sans-serif;
            font-size: 16px;
        }
        .hero-heading {
            text-align: center;
            color: white;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .hero-heading h1 {
            font-size: clamp(2.2rem, 6vw, 5rem);
            margin: 0;
            font-weight: 600;
        }

        .hero-heading h2 {
            font-size: clamp(1.2rem, 3vw, 2.5rem);
            margin-top: 0.5rem;
            font-weight: 400;
            opacity: 0.9;
        }

        .hero-subtitle {
            font-size: clamp(1.5rem, 3.5vw, 2.25rem);
            color: #fff;
            text-align: center;
            max-width: 800px;
            margin-top: 1.5rem;
            line-height: 1.6;
            font-family: 'Source Sans Pro', sans-serif;
        }

        .login-dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            background-color: white;
            min-width: 180px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            z-index: 1000;
            border-radius: 4px;
            overflow: hidden;
        }

        .login-dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

        .login-dropdown-content a:hover {
            background-color: #f1f1f1;
        }

        .login-dropdown:hover .login-dropdown-content {
            display: block;
        }

        .login-btn:hover {
            background-color: #e25e11;
        }
        .dropdown {
            position: relative; /* 🧠 This is critical */
            margin-right: 15px;
        }
        .dropdown .dropbtn {
            font-size: 16px;
            border: none;
            outline: none;
            background-color: inherit;
            font-family: inherit;
            margin: 0;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 180px;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            z-index: 1001;
            animation: dropdownFade 0.2s ease;
            overflow: hidden;
        }

        .dropdown-content a {
            color: #333;
            padding: 12px 18px;
            text-decoration: none;
            display: block;
            transition: background-color 0.2s ease, color 0.2s ease;
        }

        .dropdown-content a:hover {
            background-color: #ffe3d2;
            color: #d45000;
        }
        @keyframes dropdownFade {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .navbar .auth-buttons {
            margin-left: auto;
        }
        .navbar .auth-buttons a {
            background-color: #F36C21;
            color: white;
            padding: 14px 20px;
            text-decoration: none;
            margin-left: 10px;
        }
        .navbar .auth-buttons a:hover {
            background-color: #45a049;
        }

        .orange-space {
            height: 100vh;
            background-color: #F36C21;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .orange-space h1 {
            font-size: clamp(2.5rem, 8vw, 8rem); /* Responsive sizing */
            color: rgb(255, 255, 255);
            line-height: 1.2;
            font-family: 'Source Sans Pro', sans-serif;
            
            text-align: center;     /* ⬅️ Ensure text is centered */
            margin: 0 auto;         /* ⬅️ Ensure block centering */
            display: block;         /* Safe default */
            max-width: 90vw;        /* Avoids overflow on small screens */
        }
        .request-demo {
            background-color: white;
            padding: 30px;
            margin: 30px;
            border-radius: 10px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            font-family: 'Gotham Rounded', sans-serif;
        }
        .request-demo h2 {
            color: #F36C21;
            text-align: center;
            margin-bottom: 20px;
            font-family: 'Gotham Rounded', sans-serif;
        }
        .request-demo form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .request-demo label {
            display: block;
            width: 100%;
            text-align: left;
            margin-bottom: 5px;
            font-weight: bold;
            font-family: 'Gotham Rounded', sans-serif;
        }
        .request-demo input, .request-demo textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }
        .request-demo button {
            background-color: #ff8000;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        .request-demo button:hover {
            background-color: #45a049;
        }
        .site-footer {
            background-color: #F36C21;
            color: white;
            padding: 70px 60px 40px;
            font-family: 'Source Sans Pro', sans-serif;
            margin-top: 80px;
            font-size: 16px;
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-column {
            flex: 1 1 220px;
            min-width: 180px;
        }

        .footer-column h4 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            font-size: 1rem;
            color: #fff8f0;
            text-decoration: none;
            transition: color 0.2s ease, text-decoration 0.2s ease;
        }

        .footer-column a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            text-align: center;
            padding-top: 20px;
            margin-top: 50px;
            font-size: 0.9rem;
            color: #ffeedd;
        }
        @media screen and (max-width: 768px) {
            .summary-card,
            .pre-award-card {
                flex: 1 1 100% !important;
                max-width: 100% !important;
                padding: 20px 16px !important;
                font-size: 1rem !important;
                box-sizing: border-box;
            }
            .summary-card ul {
                padding-left: 20px;
                font-size: 1.15rem !important;
                line-height: 1.75;
            }
            .advantage-card {
                padding: 20px 16px !important;
                max-width: 100% !important;
                flex: 1 1 100% !important;
                font-size: 1rem !important;
                margin-bottom: 20px;
            }

            .advantage-card p {
                font-size: 1.25rem !important;
                line-height: 1.7;
                text-align: left;
            }

            .advantage-card h3 {
                font-size: 1.4rem !important;
                text-align: center;
            }
            .advantage-card ul {
                font-size: 1.1rem;
                padding-left: 18px;
                line-height: 1.75;
            }

            .advantage-card ul li {
                margin-bottom: 12px;
            }

            .advantage-card h3 a {
                font-size: 1.5rem;
            }
            .summary-card ul li {
                font-size: 1.1rem !important;
                margin-bottom: 14px;
                line-height: 1.7;
            }
            .summary-card p,
            .pre-award-card p {
                font-size: 1.25rem !important;
                line-height: 1.7;
                text-align: left;
                color: #333;
               
                margin-bottom: 16px;
                max-width: none !important;      /* 🧠 override the 40ch from base */
                margin: 0 0 16px 0 !important;    /* no centering */
            }
            .pre-award-card h3 a {
                font-size: 1.3rem;
                line-height: 1.4;
                text-align: center;
                display: block;
                margin-bottom: 10px;
            }

            .pre-award-card .learn-more a {
                font-size: 1rem;
                display: inline-block;
                margin-top: 12px;
            }
            .section-summary-grid,
            .pre-award-cards {
                flex-direction: column;
                gap: 24px;
                padding: 0 16px;
            }

            .summary-card-title {
                font-size: 1.25rem !important;
                text-align: center;
            }

            .learn-more a {
                font-size: 1rem;
            }

            .section-logo-large {
                max-width: 180px;
                width: 100%;
                height: auto;
            }

            .cta-ribbon h2 {
                font-size: 1.8rem;
            }

            .demo-btn-page {
                padding: 12px 20px;
                font-size: 1rem;
            }
            .post-award-card {
                flex: 1 1 100% !important;
                max-width: 100% !important;
                padding: 24px 16px !important;
                font-size: 1rem !important;
                box-sizing: border-box;
                text-align: left;
            }

            .post-award-card p {
                font-size: 0.95rem;
                line-height: 1.6;
                margin: 0 auto;
            }

            .post-award-cards {
                flex-direction: column;
                gap: 24px;
                padding: 0 16px;
            }

            .post-award-card h3 {
                font-size: 1.5rem;
                text-align: center;
            }

            .post-award-card h3 a {
                font-size: 1.5rem;
            }
            .footer-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .footer-column {
                width: 100%;
            }
        }
</style>