/* Tips Component Styles */
.tips-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tips-title {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.tip-item:hover {
  background: #e9ecef;
}

.tip-item i {
  font-size: 1.5rem;
  color: #f97b5f;
}
