body {
    font-family: Arial, sans-serif;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
}

.image-container {
    text-align: center;
    width: calc(50% - 20px);
}

.image-container img {
    width: calc(100% - 20px); /* Adjust width accounting for margin */
    height: auto;
    display: block; /* Images are block level to allow for captions below */
    margin-bottom: 5px; /* Space between image and caption */
}

.must-see-places {
    width: calc(50% - 20px);
    margin-left: 20px;
}

.must-see-places ul {
    list-style-type: none; /* Removes the default list styling */
    padding: 0; /* Removes the default padding */
}

.must-see-places li {
    margin-bottom: 0.5em;
}

.must-see-places a {
    text-decoration: none; /* Optional: Removes the underline from links */
    color: #0066cc; /* Optional: Sets a custom link color */
}

/* Existing CSS... */
.image-with-caption {
    display: inline-block;
    margin: 0 10px;
    text-align: center;
}

.image-credit {
    font-size: 0.8em;
    color: #666;
    margin: 0;
}


