/* General Styles */
body {
    background-color: black;
    color: white;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 20px;
}

/* Back Button */
.back-button {
    background-color: #FF7B3D;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 5px;
}

.back-button:hover {
    background-color: #FF7B3D;
}

.route-image {
    width: 100%;
    max-width: 400px;  /* or adjust as needed */
    height: auto;
    display: block;
    margin: 20px auto; /* center the image */
    text-align: left;
}

/* Content Styling */
.content {
    max-width: 800px;
    margin: 80px auto 0; /* Adjust top margin so content isn't covered by button */
    padding: 20px;
}

/* Section Headings */
h1 {
    text-align: center;
    color: #FF7B3D;
}

h2 {
    color: #FF7B3D;
    margin-top: 20px;
}

/* Lists */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 5px;
}
