/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
  background: var(--main);
  padding: 96px 0 96px 0;
}

.services-cards {
  gap: 32px;
  padding: 0 24px;
}

.services-title {
  text-align: center;
  color: var(--title2);
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 2em;
}

.services-cards {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: var(--secondary);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(45, 133, 130, 0.08);
  flex: 1 1 300px;
  max-width: 200px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2em 1.5em 2em 1.5em;
  text-align: center;
  min-height: 120px;
  position: relative;
}

.service-card-title {
  color: var(--main);
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 1em;
}

.service-card p {
  color: var(--text);
  font-size: 1em;
  margin-bottom: 2em;
}

@media (max-width: 900px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }
  .service-card {
    max-width: 200px;
    min-width: 0;
  }
}
