    .step {
        display: none;
    }

    .step.active {
        display: block;
    }

    .error {
        color: red;
    }

    .select-menu-button button:hover {
        background-color: #c00 !important;
        color: #fff !important;
    }

    .menu-container.selected-menu {
        background: #ffecec;
        border-radius: 5px;
        /* Optional: Add border radius for rounded corners */
    }

    .menu-container.selected-menu .select-menu-button button {
        background-color: #c00;
    }

    .row-eq-height {
        display: flex;
        flex-wrap: wrap;
    }

    .col-md-3 {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .menu-container {
        border: 1px solid #ddd;
        border-radius: 5px;
        margin-bottom: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        background: #fff;
    }

    .menu-header {
        background-color: #c00;
        color: white;
        padding: 10px;
        text-align: left;
        font-weight: bold;
        font-size: 14px;
    }

    .menu-category {
        text-align: left;
        padding: 10px 15px;
    }

    .menu-category h4 {
        font-weight: bold;
        font-size: 14px;
    }

    .menu-options {
        list-style-type: disc;
        padding-left: 20px;
        flex-grow: 1;
        margin-bottom: 0px;
    }

    .menu-options li {
        padding: 5px 0;
        font-size: 13px;

    }

    .select-menu-button {
        margin-top: auto;
        /* This ensures it sticks to the bottom */
        text-align: center;
    }

    .select-menu-button button {
        background-color: #000;
        color: white;
        padding: 10px;
        text-align: center;
        font-weight: bold;
        width: 100%;
        border: none;
        border-radius: 0 0 5px 5px;
    }

    .quote_btn {
        margin-top: 20px;
        background: #bc2327;
        border: 1px solid #bc2327;
        border-radius: 15px;
        padding: 10px 15px;
        color: #fff;
    }

    .cat_options_list ul li {
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }

    .more-text {
        display: none;
    }

    .read-more,
    .read-less {
        color: #bc2327;
        cursor: pointer;
    }

    @media(max-width: 767px) {

        .fs-title,
        #multistepsform .fs-title {
            font-size: 16px;
        }

        .options_block {
            padding: 20px 20px;
        }

        .topbar .data i {
            font-size: 14px;
        }

        .topbar .data {
            font-size: 12px;
        }

        .radio-container label {
            min-width: 300px;
            max-width: 300px;
        }

        .radio-container label span.title {
            font-size: 14px;
        }

        .cat_options_list h3 {
            font-size: 16px;
        }

        .cat_options_list ul li label {
            font-size: 14px;
        }
    }