body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background-color: #333;
  color: white;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

h1 {
  font-size: 2.5rem;
}

/* Hide menu toggle checkbox */
.menu-toggle-checkbox {
  display: none;
}

/* Hamburger icon style */
.menu-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle-label span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  display: block;
  transition: 0.3s;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .menu-toggle-label {
    display: flex;
  }

  nav.menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #444;
    padding: 10px 0;
    margin-top: 10px;
  }

  #menu-toggle:checked + .menu-toggle-label + nav.menu {
    display: flex;
  }

  nav.menu a {
    padding: 10px 20px;
    color: white;
    border-top: 1px solid #555;
  }

  .header-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-title h1 {
    font-size: 1.2rem;
  }
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 48px !important;
  height: 48px !important;
  object-fit: cover;
  display: block;
  max-width: none !important;
  max-height: none !important;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.hero {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
}

.btn {
  background-color: #003366;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  margin-top: 1rem;
}

.btn:hover {
  background-color: #005fa3;
}

.carousel {
  margin-top: 2rem;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.carousel-item {
  display: none;
  padding: 1rem;
  text-align: center;
}

.carousel-item.active {
  display: block;
}

.carousel-controls {
  text-align: center;
  margin-top: 1rem;
}

.carousel-controls button {
  background-color: #003366;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 4px;
  font-size: 1.25rem;
}


.carousel-images {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background-color: #fff;
}

.carousel-images-wrapper {
  position: relative;
  overflow: hidden;
  max-height: 800px; /* adjust to desired height */
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-images-item {
  display: none;
  padding: 1rem;
  text-align: center;
  margin: 0 auto;
}

.carousel-images-item.active {
  display: block;
}

.carousel-images-controls {
  text-align: center;
  margin-top: 1rem;
}

.carousel-images-controls button {
  background-color: #003366;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 4px;
  font-size: 1.25rem;
}

.carousel-images-item img {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 0;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease-in-out;
}

.carousel-images-item figure {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
}

@media (max-width: 480px) {
  .carousel-images-item img {
    width: 100%;
    min-width: unset;
    margin: 0 auto;
  }
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}