body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.site-header, .site-footer {
  background: #004d40;
  color: #fff;
  padding: 20px 0;
}
.hero-slider {
  height: 80vh;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-content {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 40px;
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}
.service-item {
  background: #f9f9f9;
  padding: 20px;
  margin: 10px;
  border-radius: 6px;
  animation: fadeIn 1.5s ease;
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
