/* 服務項目 */

.services-text {
  flex: 1;
}

.services-text h1 {
  font-size: 2.5rem;
  color: #003d73;
  margin-bottom: 1rem;
  padding-left: 0.5em;
}

.services-text h2 {
  color: #003d73;
  margin-bottom: 1rem;
  padding-left: 1rem;
  position: relative;
}

.services-text h2::before {
  content: attr(data-number);
  position: absolute;
  left: 2.2rem;
  top: 0;
  font-weight: bold;
  color: #003d73;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  padding-left: 1em;
}

.service-content {
  display: none;
}

.service-content.active {
  display: block;
}

.seclect-button {
  background-color: #0077cc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.seclect-button:hover {
  background-color: #005fa3;
}

/* 內文段落樣式 */

.text-section {
  margin-top: 1.5rem;
  padding-left: 1em;
}

.text-section h3 {
  font-size: 1.25rem;
  color: #00509e;
  margin-bottom: 0.5rem;
  position: relative;
}

.text-section h3::before {
  content: attr(data-number);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #0077cc;
  font-size: 1.25rem;
}

.text-section p {
  font-size: 1rem;
  color: #333;
  margin: 0.5rem 0;
}
