body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fc;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.services-section {
  padding: 80px 20px;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .subtitle {
  background-color: #e0f0ff;
  color: #007bff;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  padding: 5px 14px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  color: #222;
}

.service-box {
  display: flex;
  flex-direction: row;
  background-color: #f1f8ff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  align-items: center;
  gap: 25px;
}

.service-box img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

.contact-btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
}

.contact-btn:hover {
  background-color: #0056b3;
}
