.section-light {
  background: #181818;
}

    .container {
      max-width: 1200px;
      margin: auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 55px;
    }

    .section-label {
      color: #2371d7FF;
      text-transform: uppercase;
      letter-spacing: 4px;
      font-size: 13px;
      margin-bottom: 12px;
    }

    h2 {
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.1;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .card {
  background: #202020;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  min-height: 230px;

  transition: 0.35s ease;
  text-align: center;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(35,113,215,0.35);

  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

    .card h3 {
  color: #2371d7FF;
  font-size: 24px;
  margin-bottom: 18px;
  text-align: center;
}

    .card p {
      color: #cccccc;
    }

    .about {
      max-width: 850px;
      margin: auto;
      text-align: center;
      font-size: 21px;
      color: #d0d0d0;
    }

    .about p + p {
      margin-top: 26px;
    }