    /* ---------------------------- */
    /*  GENERAL STYLES */
    /* ---------------------------- */

    :root {
        --light-grey: #c4c4c4;

        --pale-grey: #e6e6e6;
        --dark-green: #00582B;
        --pale-green: #f8f7f6;
        --graphite: #575756;
        --orange: #FF4400;
        --red: #b50909;
        --black: #000;
        --table-grey: #F7F7F7;
    }

    html {
        scroll-behavior: smooth;
    }


    body {
        overflow-x: hidden;
        font-family: "Montserrat", sans-serif;
        font-weight: 400;
        color: var(--black);
        margin: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }

    main {
        min-height: calc(100vh - 320px);
    }

    section {
        position: relative;
        padding: 30px 0;
    }


    h1, h2, h3, h4, h5, h6 {
        font-family: "Montserrat", sans-serif;
    }

    h1 {
        color: #fff
    }

    div, p, a, span, h1, h2, h3, h4, h5, h6 {
        box-sizing: border-box;
    }

    img {
        height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    a {
        text-decoration: none;
        color: inherit;
        font-weight: 400;
    }

    a:hover {
        text-decoration: none;
    }

    p {
        font-weight: 400;
        color: var(--graphite);
    }


    li {
        list-style: none;
    }

    strong {
        font-weight: 900;
    }

    b {
        font-weight: 600;
    }

    .hidden {
        display: none !important;
    }


    .uppercase {
        text-transform: uppercase;
    }

    .underline {
        text-decoration: underline;
    }

    .text-white {
        color: #fff;
    }

    .text-underline {
        text-decoration: underline;
    }

    .no-padding {
        padding: 0 !important;
    }

    .no-margin {
        margin: 0 !important;
    }

    .no-margin-bottom {
        margin-bottom: 0;
    }

    .button-center {
        margin: 0 auto;
    }

    .section-title {
        margin-bottom: 60px;
    }

    .header-light {
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 0.1rem;
    }



    /* Margins ---------------------------- */
    .margin-top-xs {
        margin-top: 20px;
    }

    .margin-top-sm {
        margin-top: 40px;
    }

    .margin-top-md {
        margin-top: 80px;
    }

    .margin-top-lg {
        margin-top: 120px;
    }

    .margin-top-xl {
        margin-top: 160px;
    }

    .margin-bottom-xs {
        margin-bottom: 20px;
    }

    .margin-bottom-sm {
        margin-bottom: 40px;
    }

    .margin-bottom-md {
        margin-bottom: 80px;
    }

    .margin-bottom-lg {
        margin-bottom: 120px;
    }

    /* Padding ---------------------------- */
    .padding-top-xs {
        padding-top: 20px;
    }

    .padding-top-sm {
        padding-top: 40px;
    }

    .padding-top-md {
        padding-top: 80px;
    }

    .padding-top-lg {
        padding-top: 120px;
    }

    .padding-top-xl {
        padding-top: 160px;
    }

    .padding-bottom-xs {
        padding-bottom: 20px;
    }

    .padding-bottom-sm {
        padding-bottom: 40px;
    }

    .padding-bottom-md {
        padding-bottom: 80px;
    }

    .padding-bottom-lg {
        padding-bottom: 120px;
    }

    .padding-sides-md {
        padding: 0 5%;
    }


    /* SECTION LAYOUT ////////////////////////////////////////*/

    .mobile {
        display: none;
    }

    .desktop {
        display: block;
    }

    .container {
        max-width: 1200px;
    }

    .standard-padding {
        padding: 80px 0;
    }

    .section-title {
        color: var(--dark-green);
        text-transform: uppercase;
        font-weight: 600;
        font-size: 2rem;
        margin-bottom: 60px;
    }

    .section-subtitle {
        margin-top: -20px;
    }

    .container-narrow {
        max-width: 800px;
        /* margin: 0 auto; */
    }

    .background-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }

    .background-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: gentle-zoom 7s ease-in-out forwards;
    }

    .subpage {
        padding-top: 80px;
        padding-top: min(80px, 10vh);
        padding-bottom: 80px;
        padding-bottom: min(80px, 10vh);
    }


    /* ---------------------------- */
    /* CTAs */
    /* ---------------------------- */

    .cta {
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        min-width: 180px;
        /* max-width: 300px; */
        height: 45px;
        margin-top: 30px;
        font-weight: 500;
        font-size: 1.1rem;
        transition: 400ms;
        border: none;
        padding-inline: 5%;
    }

    .cta-green {
        background-color: var(--dark-green);
        color: #fff;
    }

    .cta-wide {
        max-width: 100%;
        width: 100%;
    }

    .cta-green:hover {
        letter-spacing: 0.06rem;
        background-color: var(--dark-green);
    }

    .cta-yellow {
        background-color: var(--orange);
        color: #fff;
        min-width: 220px
    }

    .cta-filter {
        font-size: 0.9rem;
        height: 38px;
        margin-top: 24px;
    }

    .cta-yellow:hover {

        letter-spacing: 0.06rem;
        background-color: var(--orange);
    }

    .cta-red {
        background-color: var(--red);
        color: #fff;
    }

    .cta-red:hover {
        letter-spacing: 0.06rem;
        background-color: #ce4646;
    }

    .cta-outline {
        background-color: #fff;
        color: var(--graphite);
        border: 1px solid var(--dark-green);
    }

    .cta-outline:hover {
        background-color: var(--dark-green);
        color: #fff;
    }

    .cta-grey {
        background-color: var(--graphite);
        color: #fff;
    }


    /* ===================================================== */
    /* MODAL */
    /* ===================================================== */

    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        transition: 0.3s ease-in-out;
    }
    .modal-content {
        position: absolute;
        background-color: #fff;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: min(90%, 500px);
        border-radius: 1px solid var(--graphite);
    }
    .modal-header {
        color: var(--graphite);
        padding: 20px;
        font-weight: 600;
        text-transform: uppercase;

        & h3 {
            font-size: 1.3rem;
            font-weight: 600;
            text-transform: uppercase;
            text-align: center;
        }
    }

    .modal-body {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: space-around;
        gap: 10px;
        padding: 20px;

        & .cta {
            max-width: 150px;
        }
    }

    /* NAVBAR
    /* ===================================================== */

    /* ===================================================== */
    /* NAVBAR
    /* ===================================================== */


    .navbar-brand img {
        max-height: 60px;
    }

    .navbar-collapse {
        width: 100%;
    }

    .navbar-nav li:before {
        content: none;
    }

    .navbar-nav li a {
        text-transform: uppercase;
        transition: 0.3s ease-in-out;
        font-size: 0.9rem;
    }

    .navbar-nav li a:hover {
        color: var(--dark-green);
    }

    .nav-link.active {
        font-weight: 600;
    }

    .login-button {
        display: flex;
        align-items: center;
        margin-left: 80px;
        width: 180px;
        text-transform: uppercase;
        font-size: 0.9rem;
    }
    .login-button svg {
        margin-right: 10px;
        fill: #575756;
    }

    .navbar-green {
        background: var(--dark-green);


        & .navbar-nav li a {
            color: #fff;
        }

        & .login-button svg {
            fill: #fff;
        }
        & .nav-link {
            color: #fff;
        }


    }


    /* ===================================================== */
    /* FOOTER */
    /* ===================================================== */
    footer {
        width: 100%;
        padding: 40px 0;
        background-color: var(--dark-green);
        color: #fff;
    }

    footer p,
    footer a {
        font-weight: 400;
        font-size: 1rem;
        color: #fff;
        margin-bottom: 0;
    }

    footer a {
        color: #fff;
    }

    .col-footer {
        height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    .logo-footer {
        padding: 0 40px;
        text-align: center;
    }

    .logo-footer img {
        max-width: 180px;
    }

    .footer-icon {
        height: 60px;
        margin-right: 20px;
    }

    .address-item {
        margin-bottom: 20px;
    }


    .contact-item .footer-icon {
        width: 40px;
    }

    #company-address {
        padding-left: 55px;
    }

    #location-icon {
        height: 50px;
        width: auto;
    }

    #copyright {
        margin-top: 44px;
    }

    /* ===================================================== */
    /* COMMON ELLEMENT */
    /* ===================================================== */

    .page-title {
        margin-bottom: 60px;
    }

    .page-title h1 {
        font-size: 2rem;
        font-weight: 600;
        color: var(--dark-green);
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 0;
    }

    .grey-tile {
        background: var(--pale-green);
        padding: 30px 10%;
    }

    /* ===================================================== */
    /* FORMS */
    /* ===================================================== */

    .form-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin-bottom: 60px;
    }

    .form-wrapper h3 {
        font-size: 1.5rem;
        color: var(--dark-green);
        font-weight: 600;
        text-transform: uppercase;
    }

    input:focus, select:focus {
        outline: none;
        border: 1px solid var(--dark-green);
        box-shadow: 0 10px 20px hsla(149, 100%, 17%, 0.15);
        background-color: #f8f9fa;
    }

    textarea:focus {
        outline: none;
        border: 1px solid var(--dark-green);
        box-shadow: 0 10px 20px hsla(149, 100%, 17%, 0.15);
        background-color: #f8f9fa;
    }

    .form-row {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin-right: -5px;
        margin-left: -5px;
        margin-bottom: 10px;

        & > .col,
        & > [class*="col-"] {
            padding-right: 5px;
            padding-left: 5px;
        }

        & .form-col-25 {
        width: 25%;
        padding-right: 5px;
        padding-left: 5px;
        }

        & .form-col-50 {
        width: 50%;
        padding-right: 5px;
        padding-left: 5px;
        }

        & .form-col-100 {
        width: 100%;
        padding-right: 5px;
        padding-left: 5px;
        }

        & input {
        width: 100%;
        border: 1px solid var(--graphite);
        border-radius: 0
        }

        & select {
            width: 100%;
            border: 1px solid var(--graphite);
            border-radius: 0
        }

        & .form-checkbox {
            display: flex;
            align-items: start;
            gap: 10px;
        }
        & .form-checkbox input {
            width: 15px;
            aspect-ratio: 1;
            padding: 0;
            cursor: pointer;
            margin-top: 0.3rem
        }
        & .form-checkbox input:focus {
            box-shadow: none;
            border: 1px solid var(--graphite);
        }
        & .form-checkbox input:checked {
            background-color: var(--dark-green);
        }

        & .form-radio {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        & .form-radio input {
            width: 15px;
            aspect-ratio: 1;
            padding: 0;
            cursor: pointer;
        }
        & .form-radio input:focus {
            box-shadow: none;
            border: 1px solid var(--graphite);
        }
        & .form-radio input:checked {
            background-color: var(--dark-green);
        }

        & .form-error {
        display: block;
        background-color: var(--orange);
        font-size: 0.8rem;
        margin-top: 5px;
        padding: 5px 10px;
        color: #fff;
        font-weight: 500;
        }
    }

    .form-error {
        display: block;
        background-color: var(--orange);
        font-size: 0.8rem;
        margin-top: 5px;
        padding: 5px 10px;
        color: #fff;
        font-weight: 500;
    }

    .discount-code-message {
        display: block;
        font-size: 0.8rem;
        margin-top: 5px;
        padding: 5px 10px;
        color: #fff;
        font-weight: 500;

        &.discount-code-error {
            background-color: var(--orange);
        }

        &.discount-code-success {
            background-color: var(--dark-green);
        }
    }

    .form-narrow {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90%;
        max-width: 500px;
    }

    .form-required {
        display: block;
        width: 100%;
        text-align: right;
    }

    /* Register Alert Messages */
    .register-alert {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        width: 100%;
        max-width: 400px;
        padding: 32px 24px;
        margin: 20px auto;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        animation: slideIn 0.3s ease-out;
    }

    .register-alert-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .register-alert-text {
        margin: 0;
        font-weight: 500;
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .register-alert-success {
        background-color: #f0f9f4;
        border: 2px solid var(--dark-green);
    }

    .register-alert-success .register-alert-icon {
        color: var(--dark-green);
    }

    .register-alert-success .register-alert-text {
        color: var(--dark-green);
    }

    .register-alert-error {
        background-color: #fff5f5;
        border: 2px solid var(--red);
    }

    .register-alert-error .register-alert-icon {
        color: var(--red);
    }

    .register-alert-error .register-alert-text {
        color: var(--red);
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* hide default input */
    #file-upload {
        display: none;
    }

    /* custom label */
    .custom-file-upload {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: "Inter", sans-serif;
        /* font-size: 20px; */
        color: var(--graphite);
        cursor: pointer;
        padding-bottom: 4px;
        transition: color 0.2s, border-color 0.2s;
    }

    .custom-file-upload:hover {
        color: #005030;
        border-color: #005030;
    }

    .custom-file-upload svg {
        width: 32px;
        height: 32px;
    }



    /* ===================================================== */
    /* ===================================================== */
    /* MEDIA QUERIES */
    /* ===================================================== */
    /* ===================================================== */
    @media (max-width: 992px) {
        .navbar-nav {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            & a {
                text-align: center;
            }
            & .login-button {
                display: flex;
                align-items: center;
                justify-content: center;
                margin-left: 0;
                margin-top: 20px;
                border-top: 1px solid var(--graphite);
            }

        }

        .navbar-green .login-button {
            border-top: 1px solid #fff;
        }

    }

    @media (max-width: 768px) {

        footer {
            padding: 20px 0;


            & .row {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            & .container {
                max-width: 300px
            }
            & .col-footer {
                /* align-items: center; */
                height: auto;
                margin-bottom: 40px;
            }
            & .logo-footer img {
                margin: 0 auto;
            }
            & .col-footer:last-child {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            & .col-footer:last-child  p {
                text-align: center;
            }
        }

    }

    @media (max-width: 768px) {
        /* FORMS  */
        .form-row {
            & .form-col-25 {
            width: 50%;
            }

            & .form-col-50 {
            width: 100%;
            }
        }
    }

    @media (max-width: 576px) {
        /* FORMS  */
        .form-row {
            flex-direction: column;

            & .form-col-25 {
            width: 100%;
            }

            & .form-col-50 {
            width: 100%;
            }

            & .form-col-100 {
            width: 100%;
            }
        }
    }
