 /* Slideshow container */
    .slideshow-container {
      max-width: 1500px;
      position: relative;
      margin: 20px auto;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    /* Slides */
    .slides {
      display: none;
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    /* Navigation buttons */
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      width: auto;
      padding: 12px;
      color: white;
      font-weight: bold;
      font-size: 22px;
      border-radius: 0 3px 3px 0;
      user-select: none;
      background-color: rgba(0,0,0,0.4);
      transform: translateY(-50%);
    }

    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }

    .prev:hover, .next:hover {
      background-color: rgba(0,0,0,0.7);
    }

    /* Availability search bar */
    .availability-search {
      max-width: 900px;
      margin: 30px auto 50px;
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }

    .availability-search label {
      font-weight: bold;
      margin-right: 5px;
    }

    .availability-search input {
      padding: 10px;
      font-size: 1em;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .availability-search button {
      background-color: #004080;
      color: white;
      border: none;
      padding: 12px 20px;
      font-size: 1em;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .availability-search button:hover {
      background-color: #ff5c33;
    }

    @media (max-width: 600px) {
      .availability-search {
        flex-direction: column;
      }
      .availability-search input, .availability-search button {
        width: 100%;
      }
    }
/* style.css */

/* General reset and font */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #e7f3f8;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header layout */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #004080;
  color: white;
  padding: 0px 150px;
}

/* Logo and title */
.logo-title {
  display: flex;
  align-items: center;
}

.logo {
  width: 85px;
  height: 80px;
  margin-right: 20px;
}

.caption {
  font-style: italic;
  font-size: 0.9em;
  margin: 7;
}

/* Navigation menu */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-list li {
  margin-left: 15px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 3px;
  transition: border-bottom 0.3s;
}

.nav-link:hover {
  border-bottom: 2px solid #ff5c33;
}

.nav-link.active {
  color: #ff5c33;
  font-weight: bold;
  border-bottom: 2px solid #ff5c33;
}

/* Footer styling */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 15px 0;
  position: flex;
  width: 100%;
  bottom: 0;
}

/* Main content styles */
main {
  padding: 60px 20px 80px; /* leave space for fixed footer */
  max-width: 900px;
  margin: 0 auto;
}

h2 {
  color: #004080;
}

form input,
form select,
form button {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1em;
}

form button {
  background-color: #004080;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background-color: #ff5c33;
}
