/* Brand color definitions */
:root {
  --brand-primary: #0056b3;
  --brand-secondary: #d9534f;
}

/* Feature card styling */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
  height: 64px;
  width: 64px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.feature-icon-wrapper i {
  font-size: 2rem;
}

/* Fabric link hover effect */
.fabric-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.fabric-link:hover {
  transform: translateY(-5px);
}