.how {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #f9fbff;
  text-align: center;
}

/* ONLY inside HOW section */
.how .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADING */
.how .container h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0e8fb0;
  margin: 0px;
}

.how .subtitle {
  margin-top: 16px;
  font-size: 18px;
  color: #1f2933;
  letter-spacing: 0.2px;
  line-height: 20px;
  font-weight: 400;
}

/* CARDS */
.how .cards {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.how .card {
  width: 300px;
  padding: 28px 20px;
  background: #f9fbff;
  border-radius: 12px;
  transition: 0.3s;
  box-shadow: #0e8fb0 0px 0px 8px -4px;
  cursor: pointer;
}

.how .card h3 {
  font-size: 18px;
  color: #1f2933;
  letter-spacing: 0.1px;
  line-height: 28px;
  font-weight: 400;
  margin: 0;
  padding: 20px 0 10px;
}

.how .card p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  letter-spacing: 0.2px;
  margin-top: 12px;
}

.how .card:hover {
  transform: translateY(-6px);
}
