.service-section {
  min-height: 100vh;
  background-color: var(--neutral-light);
  display: flex;
  align-items: center;
  padding: 9rem 0;
}

.service-content {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-video-container {
  width: 100%;
  height: 25rem;
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 1rem;
}

.service-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-top-title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-extra-bold);
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
  color: var(--primary);
  text-align: center;
  margin-bottom: 4rem;
}

.service-cards {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}

.service-card-item {
  flex: 1;
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 0.0625rem solid rgba(11, 82, 91, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(11, 82, 91, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card-item:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.75rem 1.5rem rgba(11, 82, 91, 0.15);
  border-color: rgba(11, 82, 91, 0.15);
}

.service-card-photo {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-card-item h5 {
  font-size: var(--fs-h5);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-h5);
  letter-spacing: var(--ls-h5);
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-card-item h5 i {
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.service-card-item p {
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
  opacity: 0.9;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-card-item p i.fa-check {
  font-size: 0.875rem;
  color: var(--accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.service-benefit {
  font-style: italic;
  color: var(--primary) !important;
  opacity: 0.8 !important;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 0.0625rem solid rgba(11, 82, 91, 0.1);
}

.service-benefit i {
  display: none !important;
}

@media (max-width: 1024px) {
  .service-section {
    padding: 10rem 0;
  }

  .service-content {
    max-width: 60rem;
    padding: 0 1.5rem;
  }

  .service-video-container {
    height: 22rem;
    margin-bottom: 3rem;
  }

  .service-cards {
    gap: 2rem;
  }

  .service-top-title {
    font-size: var(--fs-h2);
    margin-bottom: 3rem;
  }

  .service-card-item {
    padding: 1.75rem;
  }

  .service-card-photo {
    height: 10rem;
  }
}

@media (max-width: 820px) {
  .service-section {
    padding: 3rem 0;
  }

  .service-video-container {
    height: 18rem;
    margin-bottom: 2.5rem;
  }

  .service-cards {
    flex-direction: column;
    gap: 2rem;
  }

  .service-card-item {
    max-width: 35rem;
    margin: 0 auto;
  }

  .service-card-photo {
    height: 12rem;
  }

  .service-card-item h5 {
    justify-content: center;
    text-align: center;
  }

  .service-card-item p {
    text-align: center;
    justify-content: center;
  }

  .service-benefit {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .service-content {
    padding: 2rem 1rem;
  }

  .service-video-container {
    height: 15rem;
    margin-bottom: 2rem;
  }

  .service-top-title {
    font-size: var(--fs-h3);
    margin-bottom: 2.5rem;
  }

  .service-cards {
    gap: 1.5rem;
  }

  .service-card-item {
    padding: 1.5rem;
    max-width: 100%;
  }

  .service-card-photo {
    height: 10rem;
  }

  .service-card-item h5 {
    font-size: var(--fs-h6);
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .service-card-item h5 i {
    font-size: 1.5rem;
  }

  .service-card-item p {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .service-card-item p i.fa-check {
    align-self: center;
  }
}

@media (max-width: 350px) {
  .service-content {
    padding: 0 0.75rem;
  }

  .service-video-container {
    height: 12rem;
    margin-bottom: 1.5rem;
  }

  .service-top-title {
    font-size: var(--fs-h4);
    margin-bottom: 2rem;
  }

  .service-cards {
    gap: 1.25rem;
  }

  .service-card-item {
    padding: 1.25rem;
  }

  .service-card-photo {
    height: 8rem;
  }

  .service-card-item h5 {
    font-size: var(--fs-base);
  }

  .service-card-item h5 i {
    font-size: 1.25rem;
  }

  .service-card-item p {
    font-size: 0.9rem;
  }

  .service-benefit {
    font-size: 0.85rem;
  }
}
