body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #fafafa;
  color: #333;
}

header {
  text-align: center;
  padding: 20px;
  background-color: #f28bb6;
  color: white;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

.tagline {
  font-size: 1.2em;
  margin-top: 5px;
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 20px auto;
}

.slides {
  display: none;
}

.slides img {
  width: 100%;
  border-radius: 10px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: background-color 0.3s;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.5);
}

.gallery {
  text-align: center;
  padding: 20px;
}

.gallery-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery-grid img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  color: #666;
}
