/* Scenic Route Section */
.scenic-route-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px; /* Matches registration section */
    margin: 50px auto;
    padding: 20px;
    background-color: black;
    color: white;
    border-radius: 10px;
}

/* Text Content */
.scenic-route-text {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

/* Title Styling */
.scenic-route-title {
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #FF4500; /* Orange underline */
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* List Styling */
.scenic-route-text ul {
    list-style: none;
    padding: 0;
}

.scenic-route-text ul li {
    font-size: 16px;
    padding: 5px 0;
    font-weight: bold;
    color: white;
    display: flex;
    align-items: center;
}

/* Orange bullet points */
.orange-dot {
    width: 8px;
    height: 8px;
    background-color: #FF4500;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

/* Image Styling */
.scenic-route-image {
    flex-shrink: 0;
}

.scenic-route-image img {
    width: 350px; /* Adjust as needed */
    border-radius: 10px;
}


@media (max-width: 768px) {
    .scenic-route-container {
        flex-direction: column; /* Stack items vertically */
        text-align: center;
    }

    .scenic-route-text {
        padding-right: 0;
    }

    .scenic-route-image img {
        width: 100%; /* Make image full width */
        max-width: 400px; /* Keep it reasonable */
        margin-top: 8px;
    }
}
