/* --- Base layout --- */
.services-section {
    padding: 4rem 0;
    background: #f2f2f2;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }
  
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* --- Heading --- */
  .services-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
  }
  
  .services-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
  }
  
  .services-header p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  /* --- Grid --- */
  .services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
  
  /* --- Card --- */
  .service-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 8px 16px rgba(0,0,0,.06);
    padding: 2rem;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
  }
  
  .service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.25rem 0 .75rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.55;
  }
  
  /* --- Icon circle --- */
  .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
  }
  
  /* Colour modifiers */
  .bg-indigo { background: #4f46e5; }
  .bg-emerald { background: #059669; }
  .bg-pink { background: #ec4899; }
  
  /* --- Responsive tweaks --- */
  @media (min-width: 768px) {
    .services-section { padding: 5rem 0; }
    .service-card p { font-size: 0.95rem; }
  }
  