body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f0ebe6;
    text-align: center;
}

header {
    background: linear-gradient(120deg, #008d36, #ffffff, #ce2b37); /* Updated shades of the Italian flag */
    color: #000;
    padding: 30px 10px;
    text-align: center;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: url('path_to_olive_branch_icon.png') no-repeat center; /* Replace with your path to an olive branch icon */
    background-size: contain;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    padding: 0 20px;
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.image-grid a {
    text-decoration: none;
    color: black;
    flex: 1 1 300px; /* Makes the grid responsive */
    margin: 10px;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.05);
}

.image-grid p {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-top: 8px;
}

a {
    color: #0056b3;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #f4f4f4;
    transition: background-color 0.3s ease;
}

a:hover {
    background-color: #ded9d3;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .image-grid {
        flex-direction: column;
    }

    .image-grid a {
        max-width: 90%;
        margin: 10px auto; /* Center align on small screens */
    }
}


.itinerary {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.day {
    margin-bottom: 20px;
}

.day h2 {
    color: #0056b3;
    margin-bottom: 10px;
}

