CSS
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #007bff;
    color: white;
    padding: 30px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.rental-item {
    margin-bottom: 80px;
}

.rental-item h2 {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 20px;
}

.rental-item a {
    text-decoration: none;
    color: inherit;
}

/* Key rules for smaller, nicer images */
.rental-item img {
    max-width: 50%;      /* Limits to about half the page width */
    width: 600px;        /* Optional max pixel width for consistency */
    height: auto;        /* Keeps the photo proportions correct */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin-top: 15px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}