body {
  color: #222;
  background: #fff;
}

.hero {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.staffing-hero {
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216');
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
}

.about-section {
  padding: 70px 20px;
  text-align: center;
}

.container {
  max-width: 900px;
  margin: auto;
}

.about-section h2 {
  font-size: 36px;
  color: #0a3d62;
  margin-bottom: 20px;
}

.about-section p {
  line-height: 1.8;
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 20px 50px 70px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  color: #1abc9c;
  margin-bottom: 15px;
}

.service-card p {
  line-height: 1.7;
}

.highlight {
  background: #0a3d62;
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.highlight h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.highlight-boxes {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.box {
  background: white;
  color: #333;
  width: 280px;
  padding: 25px;
  border-radius: 12px;
}

.box h3 {
  color: #1abc9c;
  margin-bottom: 15px;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}

@media screen and (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .hero {
    height: 55vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .about-section h2,
  .highlight h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .highlight-boxes {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 90%;
    max-width: 330px;
  }
}