.specialties-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.sub-heading {
  color: #008080;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.main-heading {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
}

.main-heading strong {
  font-weight: 700;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Remove card styles if present */
/* .card, .card-body, .card-img-top, .card-title, .card-text { all: unset; } */

/* Circular image style */
.treatment-circle-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #217066;
  background: #fff;
  display: block;
  margin: 0 auto 8px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.treatment-circle-img:hover {
  transform: scale(1.07);
}

.treatment-name {
  font-size: 1rem;
  font-weight: 600;
  color: #217066;
  text-align: center;
  margin-bottom: 8px;
}

/* Responsive grid for mobile */
@media (max-width: 767px) {
  .row-cols-3, .row-cols-sm-4, .row-cols-md-6 {
    --bs-columns: 3;
  }
  .treatment-circle-img {
    width: 70px;
    height: 70px;
  }
  .treatment-name {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .row-cols-3, .row-cols-sm-4, .row-cols-md-6 {
    --bs-columns: 2;
  }
  .treatment-circle-img {
    width: 56px;
    height: 56px;
  }
  .treatment-name {
    font-size: 0.9rem;
  }
}
