* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #101215;
}

header {
    background-color: #0c0b0b; /* Optional: can change to any background color or remove */
    padding: 20px;
    color: rgb(243, 235, 235);
    text-align: center;
}

.header-container {
    display: flex;
    flex-direction: column; /* Stacks the image and text vertically */
    align-items: center;
}

.header-image {
    width: 100px; /* Set desired width for the image */
    height: auto;  /* Maintain aspect ratio */
    margin-bottom: 15px;
}

.header-container h1 {
    font-size: 2.5rem;
}

.header-container p {
    font-size: 1.2rem;
}


.itinerary-intro {
    text-align: center;
    padding: 20px;
    background-color: #a00808;
    box-shadow: 0px 1px 3px rgba(221, 31, 31, 0.1);
    margin: 20px;
    text-emphasis-color: white;
}

.day-plan {
    margin: 20px;
}

.day {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.tour h4 {
    color: #007bff;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
