/* Services Section */
.services-section {
  min-height: 100vh;
  padding: 10rem 0 4rem;
  background: var(--dark-bg);
}

.services-section .container {
  max-width: 900px;
}

.services-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.service-card {
  background: rgba(26, 16, 40, 0.6);
  border: 1px solid rgba(117, 60, 189, 0.2);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.service-card-header h3 {
  color: #FFFFFF;
  margin: 0;
  font-size: 1.3rem;
}

.service-icon {
  color: #D4A843;
  width: 24px;
  height: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
}

.item-icon {
  color: #D4A843;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}

.service-item span {
  color: #E0DBE8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-item strong {
  color: #FFFFFF;
  margin-right: 0.4rem;
}

.service-card.emergency {
  border-color: rgba(224, 82, 82, 0.3);
}
.service-card.emergency .service-icon {
  color: #E05252;
}

.service-card.health {
  border-color: rgba(82, 183, 136, 0.3);
}
.service-card.health .service-icon {
  color: #52B788;
}

@media (max-width: 768px) {
  .services-section {
    padding: 8rem 0 3rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-card-header h3 {
    font-size: 1.15rem;
  }
}
