/* Hero section styles */
.hero-travel {
    background: #ede8e8;
    padding: 2em 0; /* Adjust this value to create space between the header and the travel info section */
}

/* Travel Information section styles */
.travel-info-section {
    padding: 2em 1em;
    background: #ede8e8;
}

.travel-info-section h1 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1em;
}

.travel-info-container {
    display: flex;
    flex-direction: column; /* Change to column direction */
    align-items: center;
}

.map-column {
    width: 100%;
    margin-bottom: 2em; /* Add margin for spacing */
    display: flex;
    flex-direction: column; /* Change to column direction */
    align-items: center;
}

.info-column {
    width: 100%;
    text-align: left;
    max-width: 800px; /* Add max-width for better readability */
}

.info-column h2 {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1em;
}

.info-column p,
.info-column ul {
    font-family: 'Abel', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5em;
    margin-bottom: 1em;
}

.info-column ul {
    padding-left: 1.5em;
}

.info-column ul li {
    margin-bottom: 1em;
}

/* Media Query for Mobile Devices */
@media (max-width: 750px) {
    .map-column iframe {
        width: 100%;
        height: 100%;
    }

    .info-column h2 {
        font-size: 1.5rem; /* Adjust font size for mobile */
    }

    .info-column p,
    .info-column ul {
        font-size: 1rem; /* Adjust font size for mobile */
    }
}
