.services{ background:#fff; padding:90px 0; text-align:center; }
.services-title{ font-size:2.1rem; font-weight:800; color:#2F2454; margin-bottom:14px; }
.services-title .highlight{ color:#F4C61C; }
.services-lead{ font-size:16px; color:#777; max-width:620px; margin:0 auto 50px; }

.services-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:left; }
.service-card{ border:1px solid #eee; border-radius:6px; padding:28px 24px; transition:.3s; }
.service-card:hover{ border-color:#F4C61C; box-shadow:0 8px 24px rgba(0,0,0,.05); transform:translateY(-3px); }

.service-icon{ margin-bottom:20px; }
.service-icon img{ width:70px; height:70px; object-fit:contain; }

.service-card h3{ font-size:1.05rem; font-weight:700; color:#222; margin-bottom:10px; }
.service-card p{ font-size:14px; line-height:1.7; color:#777; margin:0; }

@media(max-width:992px){
  .services-grid{ grid-template-columns:repeat(2,1fr); }
}
@media(max-width:576px){
  .services-grid{ grid-template-columns:1fr; }
}