.nav-link.active {
            font-weight: 700;
        }
        html {
            scroll-behavior: smooth;
        }
        /* Custom styles for the orange theme */
        .text-myorange { color: #f46d22; }
        .bg-myorange { background-color: #f46d22; }
        .btn-myorange {
            background-color: #f46d22;
            color: white;
            border-color: #f46d22;
        }
        .btn-myorange:hover {
            background-color: #e05a18;
            border-color: #e05a18;
            color: white;
        }
        .form-control:focus {
            border-color: #f46d22;
            box-shadow: 0 0 0 0.25rem rgba(244, 109, 34, 0.25);
        }
        .bg-gradient-myorange {
            background: linear-gradient(to right, #f46d22, #e05a18);
        }
        .bg-orange-subtle { background-color: #fff3e6; } /* Custom light orange for suggestions */
        .text-orange-emphasis { color: #cc581a; } /* Custom dark orange for suggestions */
        .bg-red-subtle { background-color: #f8d7da; } /* Bootstrap's danger light */
        .text-red-emphasis { color: #842029; } /* Bootstrap's danger dark */

        /* Basic styling for the loading indicator */
        .loading-spinner {
            border: 4px solid #f3f3f3; /* Light grey */
            border-top: 4px solid #f46d22; /* Orange */
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Hero banner specific styles */
        .hero-banner-container {
            position: relative;
            width: 100%;
            padding-top: 30%; /* Adjust this for desired aspect ratio (e.g., 56.25% for 16:9) */
            overflow: hidden;
        }
        .hero-banner-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image covers the area without distortion */
        }
        .banner-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: white;
        }
        
      /* Custom styles for the orange theme */
        .text-myorange { color: #f46d22; }
        .bg-myorange { background-color: #f46d22; }
        .btn-myorange {
            background-color: #f46d22;
            color: white;
            border-color: #f46d22;
        }
        .btn-myorange:hover {
            background-color: #e05a18;
            border-color: #e05a18;
            color: white;
        }
        .form-control:focus {
            border-color: #f46d22;
            box-shadow: 0 0 0 0.25rem rgba(244, 109, 34, 0.25);
        }
        .bg-gradient-myorange {
            background: linear-gradient(to right, #f46d22, #e05a18);
        }
        .bg-orange-subtle { background-color: #fff3e6; } /* Custom light orange for suggestions */
        .text-orange-emphasis { color: #cc581a; } /* Custom dark orange for suggestions */
        .bg-red-subtle { background-color: #f8d7da; } /* Bootstrap's danger light */
        .text-red-emphasis { color: #842029; } /* Bootstrap's danger dark */

        /* Hero banner specific styles */
        .hero-banner-container {
            position: relative;
            width: 100%;
            padding-top: 30%; /* Adjust this for desired aspect ratio (e.g., 56.25% for 16:9) */
            overflow: hidden;
        }
        .hero-banner-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image covers the area without distortion */
        }
        .banner-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: white;
        }

        /* Hover effect for business size cards */
        .business-size-card {
            transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
        }
        .business-size-card:hover {
            background-color: #ffeccf; /* A slightly darker, more prominent orange-like shade on hover */
            transform: translateY(-5px); /* Optional: slight lift effect */
        }
