:root {
            --primary-color: #17a2b8;
        }

        body {
            font-family: 'Nunito', sans-serif;
        }

        /* Navbar base styles */
        #mainNav {
            background-color: transparent;
            transition: all 0.3s ease;
            box-shadow: none;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
            z-index: 10;
        }

        #mainNav.scrolled {
            background-color: #5a5a5a;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        .navbar-toggler {
            border: none;
            background-color: transparent;
            box-shadow: none !important;
            outline: none !important;
        }

        .navbar-toggler:focus,
        .navbar-toggler:active {
            box-shadow: none !important;
            outline: none !important;
        }

        .navbar-toggler-icon {
            filter: brightness(0) invert(1);
        }

        /* Logo scaling */
        .navbar-brand .logo {
            width: 180px;
            transition: all 0.3s ease;
        }

        #mainNav.scrolled .navbar-brand .logo {
            width: 120px;
        }

        .nav-link {
            color: #fff !important;
            font-weight: 500;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        #navbarNav {
            text-align: left;
        }

        .navbar-nav {
            align-items: flex-start;
        }

        .navbar-collapse {
            justify-content: start !important;
        }

        @media (min-width: 992px) {
            .navbar-collapse.collapse:not(.show) {
                display: none !important;
            }

            .navbar-toggler {
                display: block !important;
            }
        }

        .navbar .container {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }

        .navbar-toggler {
            order: 0;
            margin-right: auto;
        }

        .navbar-brand {
            order: 1;
            margin: 0 auto;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .hero-container {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (min-width: 992px) {
            .hero-container {
                height: 60vh;
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
            text-align: center;
        }

        .hero-video {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            top: 0;
            left: 0;
            z-index: 0;
        }

        .hero-overlay .btn {
            color: #17a2b8 !important;
            /* border: 2px solid #87AF2C !important; */
            border: 2px solid #17a2b8 !important;
            padding: 1rem 4rem;
            font-size: 1rem;
        }

        .hero-overlay .btn:hover,
        .hero-overlay .btn:focus,
        .hero-overlay .btn:active {
            background-color: #17a2b8 !important;
            border: 2px solid #FFF !important;
            color: #FFF !important;
        }

        .green-highlight {
            background-color: #17a2b8;
        }

        .link-hover:hover {
            color: rgb(0, 0, 0) !important;
            text-decoration: underline;
        }

        .btn {
            font-weight: 700;
            color: #17a2b8 !important;
            border: 2px solid #17a2b8 !important;
            padding: 1rem 4rem;
            font-size: 1rem;
        }

        .btn:hover,
        .btn:focus,
        .btn:active {
            background-color: #17a2b8 !important;
            border: 2px solid #FFF !important;
            color: #FFF !important;
        }

        .btn_g {
            font-size: 1rem;
            font-weight: 700;
            padding: 1rem 4rem;
            background-color: #17a2b8 !important;
            border: 2px solid #FFF !important;
            color: #FFF !important;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
        }

        .btn_g:hover,
        .btn_g:focus,
        .btn_g:active {
            font-weight: 700;
            background-color: transparent !important;
            border: 2px solid #17a2b8 !important;
            color: #17a2b8 !important;
            text-decoration: none;
        }


        .title-underline {
            width: 100%;
            height: 5px;
            border-radius: 2px;
        }

        .accordion-button {
            background-color: transparent;
            font-weight: bold;
            font-size: 1.25rem;
            transition: color 0.3s ease;
        }

        .accordion-button.faq-toggle {
            color: #212529;
        }

        .accordion-button.faq-toggle:not(.collapsed) {
            color: #17a2b8;
        }

        .accordion-button:not(.collapsed) {
            background-color: transparent !important;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none !important;
            outline: none !important;
        }

        .accordion-body {
            font-size: 1.1rem;
            line-height: 1.6;
        }