/* --- Services Banner Styles --- */
.services-banner-section {
  width: 100vw;
  margin: 0 0 32px 0;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
.services-banner-wrap {
  position: relative;
  width: 100vw;
  margin: 0;
  height: 120px;
  overflow: hidden;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-banner-img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) grayscale(0.1) blur(0.5px);
  display: block;
}
.services-banner-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  font-family: inherit;
  text-align: center;
}
/* --- Services Page Styles --- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.service-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(35, 64, 142, 0.08);
  overflow: hidden;
  min-height: 180px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card.even {
  flex-direction: row-reverse;
}
.service-card img {
  width: 30%;
  display: block;
}
.service-content {
  flex: 1 1 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}
.service-excerpt {
  font-size: 1.01rem;
  color: #222;
  font-weight: 400;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 18.5em;
}
@media (max-width: 700px) {
  .service-card, .service-card.even {
    flex-direction: column !important;
    min-height: 0;
  }
  .service-card img {
    width: 100%;
    max-width: 100vw;
    height: auto;
    border-radius: 18px 18px 0 0;
  }
  .service-content {
    padding: 18px 12px;
  }
}
