#services-hero-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #0f172a;
  color: white;
  align-items: center;
  margin-bottom: 4rem;
}

#services-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin: 1rem;
  font-size: 2rem;
  margin-top: 4rem;
}

#services-text {
  font-size: 1.5rem;
  color: #e0d6d6;
  margin-bottom: 2rem;
  margin: 0 1rem;
  text-align: center;
  margin-bottom: 4rem;
}

/*responsive hero styles*/ 

@media (min-width: 768px) {
  #services-title {
    font-size: 2.5rem;
  }
  #services-text {
    font-size: 1.75rem;
     margin-bottom: 2rem;
    margin: 0 1rem;
    text-align: center;
     margin-bottom: 4rem;
  }

}

/*services section styles*/

#services-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  width: 90%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  padding-bottom: 20px;
}


.service-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

#service-card-description {
  padding: 20px;
}

.card-img {
  width: 35px;
  height: auto;
}

.card-title {
  font-size: 2rem;
  font-weight: bold;
}

.card-text {
  font-size: 1.5rem;
  color: #475569;
  margin-top: 1rem;
}

#card-individual-services {
  margin-left: 20px;
}

.card-individual-service {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
}

/*services section responsive styles*/

@media (min-width: 768px){
  #services-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .service-card {
    margin-top: 20px;
  }
}

@media (min-width: 1024px){
  #services-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
  .service-card {
    margin-top: 30px;
  }
}

