body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures footer sticks to bottom */
}

/* Header */
.header {
    flex-grow: 1; /* Allows content to push the footer down */
    background-color: #ffffff;
    color: white;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0.1, 0.1, 0.1, 0.1);
    width: 90%;
    margin: 20px auto;
    max-width: 1000px;
    padding: 20px;
}

/* Main Content Area */
.content {
    flex-grow: 1; /* Allows content to push the footer down */
    padding: 20px;
    max-width: 1000px;
    width: 90%;
    margin: 20px auto;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ccc;
    /*padding: 1rem;*/
    text-align: center;
    margin-top: auto; /* Ensures footer is always at the bottom */
    flex-grow: 1; /* Allows content to push the footer down */
    padding: 20px;
    max-width: 1000px;
    width: 90%;
    margin: 20px auto;
    border-radius: 6px;
    height: auto;
}

.map {
    flex-grow: 1; /* Allows content to push the footer down */
    padding: 20px;
    max-width: 1000px;
    width: 90%;
    margin: 20px auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
}

/* ================================== */
/* === 2. Slider Styling === */
/* ================================== */
.slider-wrapper-container {
    /* Restricts the slider width within the content area */
    max-width: 940px; 
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* The moving track */
.slider-wrapper {
    display: flex;
    width: 400%; /* 4 images * 100% each */
    transition: transform 0.5s ease-in-out;
}

/* Individual slide */
.slide {
    width: 25%; /* 1/4 of the wrapper width */
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    display: block;
    /* Ensures images maintain aspect ratio without fixed height */
    height: auto; 
}
.logo img {
    width: auto;
    display: center;
    /* Ensures images maintain aspect ratio without fixed height */
    height: auto; 
}

/* Navigation Buttons */
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    line-height: 1;
    transition: background 0.3s;
}

.slider-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

#prevBtn { left: 0; border-radius: 0 6px 6px 0; }
#nextBtn { right: 0; border-radius: 6px 0 0 6px; }

/* ================================== */
/* === 3. Responsiveness (Optional) === */
/* ================================== */
@media (max-width: 600px) {
    .content {
        width: 95%;
        padding: 10px;
        margin: 10px auto;
    }
    .header h1 {
        font-size: 1.5rem;
    }
    .slider-button {
        padding: 8px;
        font-size: 1.2rem;
    }
}

a:link {
    color: #20866f; /* Bright Blue */
    text-decoration: none; /* Optional: remove underline */
}

/* Change color of visited links */
a:visited {
    color: #20866f; /* Purple */
}

/* Change color when the user hovers over the link */
a:hover {
    color: #ffc107; /* Yellow */
    text-decoration: underline; /* Optional: add underline on hover */
}

/* Change color when the link is being clicked */
a:active {
    color: #dc3545; /* Red */
}