* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f7f9fc;
  color: #222;
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #0a6cf1, #0fb9b1);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.rating {
  display: inline-block;
  margin-top: 8px;
  font-weight: bold;
}

/* SECTIONS */
.section {
  max-width: 900px;
  margin: 25px auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.section h2 {
  color: #0a6cf1;
  margin-bottom: 10px;
}

/* GALLERY */
.gallery {
  background: #fff;
  padding: 15px 0;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 10px;
}

/* BUTTON */
.call-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #0a6cf1;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}

/* SERVICES */
.services ul {
  list-style: none;
}

.services li {
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  text-align: center;
}

.slide img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.price {
  margin-top: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #0a6cf1;
}

.price-list {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: #0a6cf1;
}

.price-list p {
  margin: 4px 0;
}

