body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
header img {
    width: 300px;
    height: 300px;
}
.building-photo {
    width: 1204px;
    height: 534px;
    display: block;
    margin: 0 auto;
}
.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}
.owner-photo {
    max-width: 100%;
    max-height: 300px;
    width: auto; /* Ensures the width adjusts to maintain aspect ratio */
    height: auto; /* Ensures the height adjusts to maintain aspect ratio */
    border-radius: 50%; /* Optional: makes the photo circular if desired */
    display: block;
    margin: 0 auto;
}
.owner-photo-container {
	text-align: center;
	margin: 20px 0;
}
.contact-info {
    margin-top: 20px;
    text-align: center;
}
.contact-info p {
    margin: 5px 0;
}
footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
    margin-top: 20px;
}
footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

