    .return_con {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    .ret_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 */
    }
    .exchange {
        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: 530px; /* 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 */
    }
    .message_of_return {
        font-family: Arial, sans-serif; /* Adjusts font */
        background-color: #f9f9f9; /* Light background color */
        padding: 20px; /* Padding around the content */
        border-radius: 8px; /* Optional: rounded corners */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow for a card-like appearance */
        width: 550px; /* Set a specific width */
        height: 470px; /* Set a specific height */
        border: 2px solid #008080; /* Light border color */
        overflow: hidden; /* Prevents content from overflowing if text is too long */
    }
    .message_of_return h2 {
        font-size: 24px; /* Larger font size for heading */
        margin-bottom: 10px; /* Space between heading and paragraph */
        color: #dfa136; /* Dark text color */
        text-align: center; /* Center-align the heading */
    }
    .message_of_return p {
        font-size: 10px; /* Normal text size for paragraph */
        color: #666; /* Slightly lighter text color */
        line-height: 1.6; /* Line height for readability */
        margin: 0; /* Removes any default margin */
    }
    .ret_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;
    }