/* Service Philosophy Section */
.service-section {
  padding: 46px 0 60px;
}

.service-section-title {
  font-size: 32px;
  font-family: SourceHanSansCNVF-Medium, sans-serif;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
  margin-bottom: 32px;
  text-align: left;
}

/* Philosophy Box */
.service-philosophy-box {
  background-color: rgba(215, 0, 22, 1); /* #d70016 */
  width: 100%;
  padding: 80px 93px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 306px;
}

.service-philosophy-text {
  max-width: 850px;
  color: rgba(255, 255, 255, 1);
}

.service-philosophy-text h3 {
  font-size: 30px;
  font-family: SourceHanSansCNVF-Bold, sans-serif;
  font-weight: 700;
  line-height: 44px;
  margin: 0 0 18px 0;
}

.service-philosophy-text p {
  font-size: 16px;
  font-family: SourceHanSansCNVF-Regular, sans-serif;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.service-philosophy-icon {
  width: 268px;
  height: 268px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
}

.service-philosophy-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Service Commitment Section */
.service-commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 49px;
}

.commitment-card {
  background-color: rgba(242, 242, 242, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 570px;
}

.commitment-card-image {
  height: 270px;
  width: 100%;
  background-color: rgba(74, 96, 178, 1);
}

.commitment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.commitment-card-title {
  font-size: 24px;
  font-family: SourceHanSansCNVF-Bold, sans-serif;
  font-weight: 700;
  color: rgba(215, 0, 22, 1);
  margin: 38px 40px 29px;
}

.commitment-card-content {
  padding: 0 40px 40px;
  flex: 1;
}

.commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.commitment-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 24px;
  font-size: 16px;
  font-family: SourceHanSansCNVF-Medium, sans-serif;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
  line-height: 22px;
}

.commitment-list li:last-child {
  margin-bottom: 0;
}

.commitment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
  .service-commitment-grid {
    gap: 30px;
  }
}

@media (max-width: 1200px) {
  .service-philosophy-box {
    padding: 40px;
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .service-philosophy-icon {
    margin-left: 0;
  }
  
  .service-commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-commitment-grid {
    grid-template-columns: 1fr;
  }
  
  .service-philosophy-text h3 {
    font-size: 24px;
    line-height: 36px;
  }
  
  .commitment-card-title {
    margin: 24px 20px 20px;
  }
  
  .commitment-card-content {
    padding: 0 20px 24px;
  }
}
