body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.header {
    background-color: #ff6f61;
    color: white;
    padding: 20px;
    text-align: center;
}
.container {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
margin-bottom:60px;
}
h1 {
    color: white;
} 
h2 {
    color: #ff6f61;
}
p {
    line-height: 1.6;
}
.cta {
    text-align: center;
    margin: 30px 0;
}
.cta a {
    background-color: #ff6f61;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.cta a:hover {
    background-color: #e55b52;
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
#map {
    height: 400px;
    width: 100%;
}
#controls {
    margin: 20px 0;
    text-align: center;
}
#controls input {
    margin: 5px;
    padding: 8px;
    width: 200px;
}
#route-info {
    margin-top: 20px;
}
language-selector {
    margin: 10px 0;
}

.language-selector button {
    background-color: white;
    color: #ff6f61;
    border: 2px solid #ff6f61;
    padding: 5px 15px;
    margin: 0 5px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.language-selector button:hover {
    background-color: #ff6f61;
    color: white;
}
/* .gallery img {
    width: 100%;
    margin-bottom: 10px;
} */
.gallery {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    justify-content: space-between; /* Space between the images */
    margin: -10px; /* Adjusts spacing around images */
}

.gallery img {
    max-width:100%;
    width: calc(50% - 20px); /* Two images per row with spacing */
    height: auto; /* Fixed height */
    margin: 10px; /* Adds spacing around each image */
    object-fit: contain; /* Ensures the image covers the container without distortion */
    box-sizing: border-box; /* Ensures padding and border are included in width */
}

/* Optional: Adjust image size on smaller screens */
@media (max-width: 768px) {
    .gallery img {
        width: 100%; /* Full width on mobile devices */
        height: auto; /* Adjust height automatically */
    }
}