<style>
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    header {
        background-color: #003366;
        color: white;
        padding: 20px;
        text-align: center;
    }
    nav {
        background-color: #f4f4f4;
        padding: 10px;
        text-align: center;
    }
    nav a {
        margin: 0 15px;
        text-decoration: none;
        color: #0056b3; /* Changed to a more readable shade of blue */
    }
    nav a:hover {
        color: #ff6600; /* Highlight color on hover for better interaction */
    }
    section {
        padding: 20px;
    }
    .property-images {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
      text-align: center;
    margin: 20px 0;
}
.property-images {
  
}

.image-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.image-container img {
    width: 100%;
    max-width: 300px; /* Limits image size */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
    
    
    .special-offers {
        background-color: #e9f5ff;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #cce7ff;
    }