
.centre-hero{
  padding:96px 7%;
  background:radial-gradient(circle at 80% 20%,#00bfd8 0,#0b5ed7 34%,#062c68 70%,#041936 100%);
  color:white;
  text-align:center;
}
.centre-hero h1{
  font-size:clamp(38px,5vw,64px);
  line-height:1.05;
  margin:18px auto;
  max-width:1000px;
}
.centre-hero p{
  font-size:19px;
  line-height:1.7;
  color:#eaf4ff;
  max-width:900px;
  margin:0 auto;
}
.centre-section{
  padding:80px 7%;
  max-width:1240px;
  margin:auto;
}
.centre-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.centre-card{
  background:white;
  border:1px solid #dce9fb;
  border-radius:28px;
  padding:28px;
  box-shadow:0 16px 45px rgba(8,18,37,.07);
}
.centre-card h3{
  color:#063b86;
  font-size:24px;
  margin-top:0;
}
.centre-card p,.centre-card li{
  color:#667085;
  line-height:1.7;
}
.centre-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:linear-gradient(135deg,#063b86,#00bfd8);
  color:white;
  display:grid;
  place-items:center;
  font-size:28px;
  margin-bottom:18px;
}
.centre-note{
  margin-top:34px;
  background:#f8fbff;
  border:1px dashed #b9d8ff;
  border-radius:24px;
  padding:22px;
  color:#667085;
  line-height:1.7;
}
@media(max-width:960px){
  .centre-grid{grid-template-columns:1fr}
}
