.treatments-section {
  padding: 60px 20px;
  background-color: #fef4f6;
}

.treatments-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #8e324a;
  margin-bottom: 40px;
  font-weight: 700;
}

.treatment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 30px;
  background-color: #8e324a;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tag:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .tag {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
}
