body {
    font-family: 'Lato', sans-serif; /* Elegant and readable font */
    line-height: 1.8;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fafafa; /* Lighter, modern background color */
    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;*/
    background-size: contain;
}

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

.itinerary-day {
    margin: 20px auto;
    max-width: 960px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.itinerary-day img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.itinerary-day ul {
    list-style: none;
    padding: 0;
}

.itinerary-day li {
    font-size: 16px;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.itinerary-day li:last-child {
    border-bottom: none;
}

.itinerary-day .icon {
    color: #ce2b37; /* Vibrant red for icons to add visual interest */
    margin-right: 10px;
}

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

a:hover, a:focus {
    background-color: #ded9d3;
    color: #333;
}

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

    .itinerary-day {
        padding: 10px;
        margin: 10px;
    }
}