.service-container {
  width: 100%;
  max-width: 1500px;
  margin: 44px auto;
  padding: 0 20px;
  gap: 30px;
}

.service-wrapper {
  margin-bottom: 2.5rem;
}

.service-category-title {
  margin: 0 0 1rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  background: none;
  padding: 0;
}

.service-category-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: white;
  margin-bottom: 2.5rem;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  /* position: relative; */
}

.service-list {
  list-style: none;
  padding: 1rem 1rem 1rem 0.5rem;
  margin:0 20px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-size: 0.95rem;
  color: #333;
  text-align: justify;
}

.service-content {
  flex: 1;
}

.service-title {
  margin-right: 0.5rem;
  color: #000;
  font-weight: bold;
  /* display: block; */
}

.service-description {
  font-weight: 400;
  color: #555;
  white-space: normal;
  word-break: break-word;
}


.no-service {
  font-style: italic;
  color: #888;
}


.btn-read {
  display: inline-block;
  padding: 8px 16px;
  margin-bottom: 1rem;
  background-color: #000;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.btn-read:hover {
  background-color: #333;
}


@media (max-width: 600px) {
  .service-container {
    padding: 0 1rem;
    margin: 24px auto;
    gap: 20px;
  }

  .service-category-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .service-category-item {
    margin-bottom: 1.5rem;
    padding: 0.8rem 0rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .service-list {
    padding: 0.5rem;
  }

  .service-item {
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }

  .service-title {
    margin-right: 0;
    margin-bottom: 0.2rem;
  }

  .service-description {
    white-space: normal !important;
    word-break: break-word;
    font-size: 0.85rem;
  }

  .btn-read {
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 0.9rem;
    margin: 0 auto 1rem auto;
    border-radius: 4px;
    text-align: center;
  }
}
