
section.servicee {
  padding: 50px 20px;
  margin-left: 16%;
  margin-right: 16%;
  margin-bottom: 10%;

}

.services-title {
  font-size: 2.5em;
  color: #eae9fc;
  text-align: center;
  padding-bottom: 10px;
  font-weight: 600;
  margin-top: 0;
}
.service-category h2 {
  font-size: 1.75em;
  color: #eae9fc;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}

.service-category ul {
  list-style-type: none;
  padding: 0;
}

.service-category ul li {
  background-color: #313131;
  color: #eae9fc;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-weight: 300;
  padding: 6px;
  padding-left: 15px;
  transition: .3s ease-out;
}

.service-category ul li:hover {
  background-color: #494949;
}
.service-category {
  margin-bottom: 40px;
  border-left: 4px solid #ee1c25;
  padding-left: 15px;
}

.service-category h2 {
  border-bottom: 2px solid #ee1c25;
  padding-bottom: 5px;
}


@media (max-width: 768px) {
  section.servicee {
    padding: 50px 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .service-category h2 {
  font-size: 22px;
  }

}



.service-toggle {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding: 15px 25px 15px 0;
  margin: 0;
  font-size: 18px;
  white-space: normal;
}

.service-toggle::after {
  content: "▼";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.8s ease;
  font-size: 24px;
}

.service-category.active .service-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

.service-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, padding 0.5s ease;
  padding: 0 15px;
  margin: 0;
}

.service-category.active .service-list {
  max-height: 500px;
  padding: 10px 15px;
}

.service-list li {
  margin-bottom: 8px;
  line-height: 1.4;
}
