/* Hero Section */
.hero {
  background: url("/img/service.png") no-repeat center center;
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

/* Services Grid */
.service-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  align-items: center;
  gap: 20px;
}

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

.service-text {
  flex: 1;
  padding: 20px;
}

.service-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #444;
}

.service-text p {
  margin-bottom: 20px;
  color: #666;
}

.btn {
  display: inline-block;
  background-color: #0074d9;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #005fa3;
}

.service-image {
  flex: 1;
  padding: 20px;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

  .service-text,
  .service-image {
    padding: 10px;
  }

  .service-text h2 {
    font-size: 24px;
  }
}
