html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fafafa;
  color: #333;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #2196F3;
  color: white;
}

.navbar .logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.carousel {
  max-width: 100%;
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  min-width: 100%;
  object-fit: contain;
  height: 400px;
}

.dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

footer {
  background-color: #eee;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-top: auto;
}

.fallback-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
}

.fallback-gallery img {
  max-width: 150px;
  height: auto;
  border: 1px solid #ccc;
}

.fallback {
  color: #666;
  font-style: italic;
  margin-top: 1rem;
}