.Submit_Your_Review {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eeeeee;
    position: relative;
    overflow: hidden;
}

/* Top Accent Line */
.Submit_Your_Review::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #b22c35 ;
}


.Submit_Your_Review .heading_holder {
    margin-bottom: 20px;
    position: relative;
}


.Submit_Your_Review .heading_holder h4 {
    text-align: left;
    font-weight: 700;
    font-size: 24px;
    color: #222;
    margin-bottom: 8px;
    position: relative;
}


.Submit_Your_Review .heading_holder p {
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}


/* Form Area */
.Submit_Your_Review .form_holder {
    margin-top: 25px;
}


.Submit_Your_Review .form_holder input,
.Submit_Your_Review .form_holder textarea {
    width: 100%;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
}


.Submit_Your_Review .form_holder input:focus,
.Submit_Your_Review .form_holder textarea:focus {
    border-color: #d79b35;
    background: #fff;
    box-shadow: 0px 0px 8px rgba(215,155,53,0.15);
}


/* Button */
.Submit_Your_Review .Green_btn_holder {
    margin-top: 20px;
}

.Submit_Your_Review .Green_btn_holder .Green_btn {
    background: #b22c35 ;;
    color: #fff;
    border-radius: 5px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #b22c35 ;;
    transition: all 0.3s ease;
}


.Submit_Your_Review .Green_btn_holder .Green_btn:hover {
    background: #b22c35 ;;
}


/* Tablet */
@media (max-width: 991px) {

    .Submit_Your_Review {
        padding: 25px;
    }

    .Submit_Your_Review .heading_holder h4 {
        font-size: 21px;
    }

}


/* Mobile */
@media (max-width: 767px) {

    .Submit_Your_Review {
        padding: 20px;
        border-radius: 10px;
    }


    .Submit_Your_Review .heading_holder h4 {
        font-size: 18px;
    }


    .Submit_Your_Review .heading_holder p {
        font-size: 13px;
    }


    .Submit_Your_Review .Green_btn_holder .Green_btn {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }

}