/* CSS per migliorare l'interattività delle card nella sezione Il nostro approccio */

.approach-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 9, 0.12) !important;
}

.approach-header-bar {
  height: 8px;
  background: linear-gradient(90deg, #00008e 0%, #0059ff 100%);
}

.approach-icon-container {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,0,142,0.1) 0%, rgba(0,89,255,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.approach-card:hover .approach-icon-container {
  transform: scale(1.1);
}

.approach-card:hover .approach-icon {
  color: #0059ff;
}

.approach-header-bar,
.approach-icon,
.approach-title,
.approach-text {
  transition: all 0.3s ease;
}

.approach-cta {
  background: linear-gradient(135deg, #00008e 0%, #0059ff 100%);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,142,0.3);
}

.approach-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,142,0.4);
  color: white;
  text-decoration: none;
}
