.keytap-benefits {
  background-color: #eaf4ff;
  padding: 60px 0;
  border-bottom: 1px solid #dee2e6;
  font-family: 'Arial', sans-serif;
}
.keytap-benefits h2 {
  font-size: 28px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 40px;
}
.keytap-benefits h2 .highlight {
  color: #3b82f6;
}
.keytap-benefits .benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.keytap-benefits .benefit-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease;
}
.keytap-benefits .benefit-box:hover {
  transform: translateY(-5px);
}
.keytap-benefits .benefit-box i {
  font-size: 28px;
  color: #3b82f6;
  margin-bottom: 10px;
}
.keytap-benefits .benefit-box h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 5px;
  color: #212529;
}
.keytap-benefits .benefit-box p {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}
@media (max-width: 768px) {
  .keytap-benefits .benefit-box {
    width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .keytap-benefits .benefit-box {
    width: 100%;
  }
}