    .terms_con {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .term_lbox {
        width: 200px;
        height: 600px;
        background-color: lightblue;
        border-radius: 5px;
        margin-left: 20px; /* margin left for left box */
        margin-top: 20px; /* margin top for left box */
        margin-bottom: 20px; /* margin bottom for left box */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Box shadow added */
    }
    .terms_conditions {
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center;
        justify-content: center;
        width: 650px; /* Set the width of the terms_conditions container */
        height: 1350px; /* Match the height of the other boxes */
        background-color: lightgrey;
        border-radius: 5px;
        margin-top: 20px; /* margin top */
        margin-bottom: 20px; /* margin bottom */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Adding box shadow to the terms_conditions container */
    }
    .term_rbox {
        width: 200px;
        height: 600px;
        background-color: lightblue;
        border-radius: 5px;
        margin-right: 20px; /* margin right for right box */
        margin-top: 20px; /* margin top for right box */
        margin-bottom: 20px; /* margin bottom for right box */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Box shadow added */
    }
    img {
        max-width: 100%;
        height: auto;
    }