body {
  font-family: Arial;
}

/* HERO */
.industry-hero {
  background: linear-gradient(90deg,#2b0a3d,#0c2c5a);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

/* SERVICES */
.container {
  width: 90%;
  margin: auto;
}

.industry-services {
  padding: 60px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-box img {
  width: 150px;
  border-radius: 8px;
}

/* PROCESS */
.industry-process {
  background: #f5f5f5;
  padding: 60px 0;
  text-align: center;
}

.process-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* TARGET */
.target-grid {
  display: flex;
  gap: 20px;
}

.target-grid div {
  background: #fff;
  padding: 20px;
  flex: 1;
  text-align: center;
}

/* WHY */
.industry-why {
  padding: 60px 0;
  text-align: center;
}

.why-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* CTA */
.industry-cta {
  background: url('../images/cta.jpg') center/cover;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.btn {
  background: #ff5c35;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}