/* ===========================
   Treatments Section
   =========================== */
.treatments-section {
  padding: 5rem 0;
  background-color: #fafafa;
}

.treatments-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  text-align: left;
}

.treatments-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 3rem;
  max-width: 900px;
}

.treatments-description p{
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 3rem;
  max-width: 900px;
}

/* Treatments Grid */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Treatment Card */
.treatment-card {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.treatment-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #e5e5e5;
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-image img {
  transform: scale(1.05);
}

.treatment-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 1.5rem 1.5rem 1rem;
  letter-spacing: 0.5px;
}

.treatment-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0 1.5rem 1.5rem;
}

/* Treatments Footer */
.treatments-footer {
  text-align: center;
  padding: 2rem 0 0;
  border-top: 1px solid #e5e5e5;
}

.treatments-footer-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .treatments-section {
    padding: 4rem 0;
  }

  .treatments-main-title {
    font-size: 2rem;
  }

  .treatments-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .treatments-footer-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 600px) {
  .treatments-section {
    padding: 3rem 0;
  }

  .treatments-main-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .treatments-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .treatment-title {
    font-size: 1rem;
    margin: 1.25rem 1.25rem 0.75rem;
  }

  .treatment-text {
    font-size: 0.9rem;
    margin: 0 1.25rem 1.25rem;
  }

  .treatments-footer {
    padding: 1.5rem 0 0;
  }

  .treatments-footer-title {
    font-size: 1.5rem;
  }
}
