body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8fafc;
  color: #333;
}

.services-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #00796b;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.service-content {
  padding: 15px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00796b;
}

.details-btn {
  background-color: #0288d1;
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}

.details-btn:hover {
  background-color: #01579b;
}

.desc-text {
  display: none;
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}

.appointment-btn {
  background-color: #00796b;
  color: #fff;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.appointment-btn:hover {
  background-color: #004d40;
}

/* Responsive */
@media (max-width: 600px) {
  .service-card img {
    height: 160px;
  }

  .service-content h3 {
    font-size: 16px;
  }

  .details-btn,
  .appointment-btn {
    font-size: 13px;
    padding: 8px;
  }
}
