/* Finance-specific additions */
.insurance-card, .property-card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-height: 225px;
}

.insurance-type, .property-service {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.insurance-type:hover, .property-service:hover {
  background: rgba(139, 69, 19, 0.05);
  transform: translateY(-3px);
}

.partner-logo {
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

.partner-logo img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.fa-hand-holding-usd {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}