.service-section {
  background: #f8f4ef;
  padding: 36px 0 48px 0;
}
.service-title {
  text-align: center;
  color: #7a5a3a;
  font-size: 2.2rem;
  margin-bottom: 32px;
  font-weight: 700;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.service-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px #b65c3d11;
  padding: 28px 22px 22px 22px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 240px;
  text-align: center;
}
.service-item i {
  font-size: 2.5rem;
  color: #b65c3d;
  margin-bottom: 14px;
}
.service-item h2 {
  font-size: 1.25rem;
  color: #7a5a3a;
  margin-bottom: 10px;
  font-weight: 600;
}
.service-item p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}
/* Responsive cho mobile */
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .container {
    padding: 0 10px;
  }
}

@media (max-width: 600px) {
  .service-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .service-item {
    padding: 18px 8px 14px 8px;
    min-width: unset;
    max-width: 100%;
    font-size: 0.98rem;
  }
  .service-item h2 {
    font-size: 1.05rem;
  }
  .service-item i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}