:root {
  --accent: #0d6efd;
  --text-dark: #10203a;
  --text-muted: #6c757d;
  --bg-light: #f8f9fb;
  --card-bg: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.business-section {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

.business-section h1 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.business-section p.lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.service-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-content ul {
  padding-left: 18px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.service-content ul li {
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .business-section h1 {
    font-size: 26px;
  }
}
