
    body {
        background-color: #fdf8e7;
    }

    .main-nav.internal-page {
        border-bottom: 1px solid #C9C9C9;
    }

    .quiz-section {
        overflow: hidden;
        position: relative;
        min-height: 50vh;
    }

    .quiz-section .container {
        /* background-color: #fdf8e7; */
        /* padding: 0 1rem; */
    }

    .quiz-section h1 {
        font-weight: 700;
        line-height: 1.2;
    }

    .quiz-section h3 {
        color: var(--black);
        margin: 0;
        margin-inline: auto;
        padding: 0;
        font-weight: 700;
        line-height: 1.2;
        font-size: 2.2rem;
    }

    .quiz-container,
    .result-container {
        margin: 0 auto;
    }

    .result-container-wrap {
        display: none;
        padding: 2rem 1rem;
    }

    .result-container {
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
        width: 100%;
    }

    .cta-container {
        width: 30%;
        display: none;
    }

    .cta-form-wrapper {
        background-color: #fff;
        padding: 1.5rem;
        border-radius: 0.8rem;
    }

    .quiz-slider-wrapper {
        /* width: 100%; */
        position: relative;
    }

    .quiz-slider {
        position: relative;
        width: 100%;
        transition: height 0.4s ease;
    }

    .quiz-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.5s ease;
        z-index: 0;
    }

    .quiz-slide.active {
        position: relative;
        transform: translateX(0);
        opacity: 1;
        z-index: 2;
    }

    .quiz-slide.slide-out-left {
        transform: translateX(-100%);
        opacity: 0;
    }

    .quiz-slide.slide-in-right {
        transform: translateX(100%);
        opacity: 0;
    }

    .quiz-slide.slide-in-left {
        transform: translateX(-100%);
        opacity: 0;
    }

    .options {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .option {
        padding: 1.2rem;
        background: #f5f5f5;
        border: none;
        border-radius: 0.5rem;
        cursor: pointer;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
        transition: all 0.3s ease;
    }

    .option:hover {
        background: #e0e0e0;
    }

    .option.selected {
        background: var(--yellow);
        color: var(--black);
    }

    .option:focus {
        outline: none !important;
    }

    .quiz-navigation {
        display: flex;
        justify-content: center;
        margin-top: 3rem;
    }

    .next-btn,
    .submit-btn {
        background-color: var(--yellow);
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .next-btn:hover,
    .submit-btn:hover {
        background-color: #e6a700;
    }

    .submit-btn,
    .next-btn {
        display: none;
    }

    .price-slider-container {
        margin-top: 3rem;
        position: relative;
    }

    .price-slider-wrapper {
        position: relative;
        padding: 1rem 0;
    }

    .price-slider-track {
        position: absolute;
        width: 100%;
        height: 8px;
        background: #e0e0e0;
        border-radius: 4px;
        top: 50%;
        transform: translateY(-50%);
    }

    .price-slider-fill {
        position: absolute;
        height: 8px;
        background: var(--yellow);
        border-radius: 4px;
        top: 50%;
        transform: translateY(-50%);
        width: 0%;
    }

    .price-slider {
        position: relative;
        width: 100%;
        margin: 0;
        -webkit-appearance: none;
        background: transparent;
        z-index: 2;
    }

    .price-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: var(--yellow);
        cursor: pointer;
        position: relative;
        z-index: 3;
        top: 0.3rem;
    }

    .price-slider::-moz-range-thumb {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: var(--yellow);
        cursor: pointer;
    }

    .price-slider-values {
        display: flex;
        justify-content: space-between;
    }

    .price-slider-values span {
        font-size: 1.6rem;
        color: #666;
    }

    .selected-price {
        text-align: center;
        margin-top: 1.5rem;
        font-size: 2.4rem;
        font-weight: bold;
    }



    .loader {
        border: 5px solid #f3f3f3;
        border-top: 5px solid #EFC337;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: spin 1s linear infinite;
        position: absolute;
        left: 50%;
        top: 50%;
        /* transition: auto; */
        transform: translate(-50%, -50%);
        z-index: 99999;
        display: none;
    }

    .quiz-slide textarea,
    .quiz-slide input:not([type=range]) {
        border: 1px solid #c4c4c4;
        border-radius: 1rem;
        box-shadow: none;
        color: rgb(106.75, 106.75, 106.75);
        transition: all .5s;
        margin-top: 3rem;
        font-size: 1.6rem;
        padding: 1.2rem;
    }

    .quiz-slide input:not([type=range]) {
        height: 4.5rem;
    }

    .quiz-slide input[type=number]::-webkit-inner-spin-button,
    .quiz-slide input[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .quiz-slide input[type=number] {
        -moz-appearance: textfield;
    }

    .coll-now-box,
    .call-now {
        display: none;
    }

    .result-container .result-box {
        width: 47%;
        padding: 2rem;
        border-radius: 1rem;
        background: #fff;
    }

    .result-container .result-box h5 {
        font-weight: 600;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }


    @media (max-width: 768px) {
        .options {
            grid-template-columns: 1fr;
        }

        .result-container .result-box {
            width: 100%;
        }
    }
