.info {
    font-family:'Open Sans', sans-serif;
    max-width: 100%; /* Adjust the width as needed */
    padding: 20px;
    background-color: #F5F1ED; /* Background color for the info container */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info h2 {
    margin-top: 0;
}

.info p {
    margin: 8px 0; /* Space between paragraphs */
}

.property-features {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    margin: 0;
}

.property-features h1{
    color:#252323;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.image-layout-container {
    display: flex;
    align-items: flex-start;
    gap: 20px; /* Space between the large image and the grid */
    margin: 20px; /* Adjust margin as needed */
}

.large-image img {
    width: 800px; /* Adjust size as needed */
    height: 350px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.grid-house {
    display: grid;
    grid-template-columns: repeat(2, 300px); /* 2 columns */
    grid-template-rows: repeat(2, 165px); /* 2 rows */
    gap: 20px; /* Space between grid items */
}

.grid-house-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images cover the grid cells */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-button{
    display:block;
    float:right;
    font-family: 'Open Sans', sans-serif;
    border-radius: 10%;
    border: 1px solid #252323;
    color: #252323;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: -30px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, box-shadow 0.3s;
}

.contact-button:hover{
    background-color: #DAD2BC;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.button-back{
    display:block;
    float:left;
    font-family: 'Open Sans', sans-serif;
    border-radius: 10%;
    border: 1px solid #252323;
    color: #252323;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin-top:50px;
    margin-left:50px;
    position:absolute;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #F5F1ED;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.button-back:hover{
    background-color: #A99985;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


.image-display {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: flex-start; /* Center vertically */
    height: auto; /* Full viewport height or adjust as needed */
    padding-top:20px;
}

.image-display img {
    max-width: 1000px;
    height: auto;
    border-radius: 8px; /* Optional: for rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: for shadow effect */
}