.work-hero {
  position: relative;
  background-image: url("../images/work/banner.webp");
  background-size: cover;
  background-position: center;
  max-height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.work-hero .work-hero-overlay h1 {
  color: #fff;
  font-size: 4rem;
  text-align: center;
  font-weight: 700;
  max-width: 40rem;
}

.work-services {
  padding: 60px 20px;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 80px 0px;
  font-family: "Alice", serif;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
}

.service-item {
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
  overflow: hidden;
}

.service-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-item .service-text {
  padding: 3rem;
}

.service-text h3 {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-text p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 2;
}

.service-text a {
  color: #e00000;
  font-size: 0.9rem;
  text-decoration: none;
}

.reverse {
  flex-direction: column-reverse;
}

.we-move-different {
  width: 100%;
  background-color: white;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.we-move-background {
  background-image: url("../images/work/banner-5.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.we-move-content {
  background-color: white;
  padding: 3rem 2rem;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.we-move-content h2 {
  font-size: 2.5rem;
  font-family: "Alice", serif;
  margin-bottom: 1.5rem;
  font-weight: 300;
  color: #1e1e1e;
}

.we-move-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #2b323a;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 2px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #444b52;
}

@media (min-width: 768px) {
  .work-hero {
    height: 400px;
  }

  .work-hero h1 {
    font-size: 2.8rem;
  }

  .service-item {
    flex-direction: row;
    height: 300px;
  }

  .service-item img {
    width: 50%;
    height: 100%;
  }

  .service-text {
    width: 50%;
    padding: 40px;
  }

  .reverse {
    flex-direction: row-reverse;
  }
}

@media (max-width: 768px) {
  .we-move-background {
    padding: 3rem 1rem;
  }

  .we-move-content {
    padding: 2rem 1rem;
  }

  .we-move-content h2 {
    font-size: 2rem;
  }

  .we-move-content p {
    font-size: 0.95rem;
  }
}
