.glass-card {
  background: #ffffff;
  border: 1px solid rgba(118, 119, 125, 0.2);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: #00687a;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -15px rgba(0, 104, 122, 0.2);
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.active-underline::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #00687a;
  transition: width 0.3s;
}

.active-underline:hover::after {
  width: 100%;
}
