body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.rental-types {
  display:flex; flex-wrap:wrap;
  justify-content:center;
  padding:2rem; gap:2rem;
}

.rental-card {
  background:#fff; border-radius:8px;
  box-shadow:0 4px 6px rgba(0,0,0,0.1);
  width:300px; text-align:center; padding:1rem;
  transition:transform 0.3s;
}
.rental-card:hover { transform:scale(1.05); }
.rental-card img { width:100%; border-radius:8px; }
.rental-card h2 { color:#ff6f61; margin:1rem 0 0.5rem; }
.rental-card p { margin-bottom:1rem; }
.rental-card a {
  background:#ff6f61; color:#fff;
  padding:0.5rem 1rem; text-decoration:none;
  border-radius:4px; transition:background 0.3s;
}
.rental-card a:hover { background:#e65c50; }
.event-gallery {
  max-width:800px; margin:3rem auto;
  text-align:center;
}
.slider {
  position:relative; overflow:hidden;
}
.slider img {
  width:100%; display:none;
}
.dots {
  margin-top:0.5rem;
}
.dot {
  cursor:pointer; height:15px; width:15px;
  margin:0 4px; background:#bbb;
  border-radius:50%; display:inline-block;
  transition:background 0.3s;
}
.dot.active, .dot:hover { background:#717171; }
