/*服務項目*/
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  border-bottom: 1px solid #27272a;
  padding-bottom: 20px;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
}

.section-header .subtitle {
  font-size: 0.875rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* 服務列表結構 */
.service-list2 {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.service-group {
  display: flex;
  gap: 40px;
}

/* 數字裝飾 */
.service-number {
  font-size: 5rem;
  font-weight: 900;
  color: #71717a;
  opacity: 0.3;
  line-height: 1;
  font-family: 'Roboto Mono', monospace;
  transition: all 0.5s ease;
  user-select: none;
  min-width: 120px;
}

.service-group:hover .service-number {
  color: #ffffff;
  opacity: 0.8;
  transform: translateX(5px);
}

/* 內容區 */
.service-content {
  flex: 1;
  border-left: 1px solid #27272a;
  padding-left: 40px;
}

.service-title-block {
  margin-bottom: 20px;
}

.service-title-block h3 {
  font-size: 1.65rem; 
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.service-title-block .en-title {
  font-size: 0.9rem;
  color: #71717a;
  font-family: 'Roboto Mono', monospace;
  text-transform: uppercase;
}

.service-desc {
  color: #d4d4d8; 
  font-size: 1.05rem; 
  max-width: 750px;
  margin-bottom: 40px;
  font-weight: 400; 
}

/* 網格細項 */
.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.item-card {
  background-color: #0a0a0a !important; 
  padding: 24px;
  border-radius: 8px;
  border-left: 3px solid #71717a; 
  transition: all 0.3s ease;
}

.item-card:hover {
  border-left-color: #ffffff;
  background-color: #1a1a1a !important;
}

.item-card h4 {
  font-size: 1.1rem; 
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.item-card p {
  font-size: 1rem; 
  color: #e4e4e7; 
  line-height: 1.8; 
  font-weight: 400;
}
/* 手機版適應 */
@media (max-width: 768px) {
  .service-group {
      flex-direction: column;
      gap: 20px;
  }
  .service-number {
      font-size: 3.5rem;
  }
  .service-content {
      border-left: none;
      padding-left: 0;
      border-top: 1px solid #27272a;
      padding-top: 20px;
  }
  .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }
}
/*服務項目結束*/
