
#service-detail {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}


.service-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}


.back-btn {
  background-color: #2980b9;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.back-btn:hover {
  background-color: #1c5980;
}


.image-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.service-image {
  width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.description {
  white-space: pre-wrap;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  padding: 20px;
  border-left: 4px solid #3498db;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .service-title {
    font-size: 1.5rem;
  }

  .back-btn {
    font-size: 13px;
    padding: 8px 14px;
  }

  .service-image {
    width: 100%;
    height: auto;
  }

  .description {
    font-size: 15px;
    padding: 15px;
  }

  #service-detail {
    margin: 20px 15px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .service-title {
    font-size: 1.25rem;
  }

  .description {
    font-size: 14px;
    padding: 12px;
  }

  .back-btn {
    width: 100%;
    text-align: center;
  }

  .image-container {
    flex-direction: column;
    align-items: center;
  }
}
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.image-gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}
.image-gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

