.bb-benefits-box {
  background: #f1f1f1;
  padding: 18px 14px;
  border-radius: 18px;
  margin: 18px 0;
}

.bb-benefits-heading {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.15;
  color: #2f2f2f;
  font-weight: 700;
}

.bb-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bb-benefit-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bb-benefit-card:hover {
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.bb-benefit-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #e8f6ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.bb-benefit-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.bb-benefit-title {
  display: block;
  color: #2f2f2f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}

.bb-benefit-desc {
  display: block;
  color: #6b6b6b;
  font-size: 13px;
  line-height: 1.35;
}

.bb-benefit-arrow {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #7a7a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 767px) {
  .bb-benefits-box {
    padding: 16px 12px;
    border-radius: 16px;
  }

  .bb-benefits-heading {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .bb-benefit-card {
    padding: 11px 12px;
    gap: 10px;
    border-radius: 14px;
  }

  .bb-benefit-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    font-size: 18px;
  }

  .bb-benefit-title {
    font-size: 15px;
  }

  .bb-benefit-desc {
    font-size: 12px;
    line-height: 1.3;
  }

  .bb-benefit-arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 22px;
  }
}
