/* Quick Facts Bar - Trust Signals */
.insurance-quick-facts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
}

.insurance-fact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.insurance-fact .material-icons {
  color: #22aea1;
  font-size: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .insurance-quick-facts {
    gap: 20px;
    padding: 16px 12px;
  }

  .insurance-fact {
    font-size: 13px;
  }

  .insurance-fact .material-icons {
    font-size: 18px;
  }
}

/* Extra small screens - stack vertically */
@media (max-width: 480px) {
  .insurance-quick-facts {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }

  .insurance-fact {
    width: 100%;
    justify-content: center;
  }
}
