.chi-siamo-body {
  background-color: #0d0d0d;
  color: #00fff7;
  font-family: 'Orbitron', sans-serif;
}

.chi-siamo-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 40px;
  background: #1a0033;
  border: 2px solid #ff00cc88;
  border-radius: 16px;
  box-shadow: 0 0 25px #00fff7, 0 0 50px #ff00cc33;
  text-align: center;
}

.chi-siamo-section h1 {
  font-size: 36px;
  color: #00fff7;
  text-shadow: 0 0 10px #00fff7, 0 0 20px #ff00cc;
  margin-bottom: 20px;
}

.intro {
  font-size: 18px;
  color: #ccc;
  text-shadow: 0 0 6px #00fff7aa;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: #0d0d0d;
  border: 2px solid #ff00cc55;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 15px #00fff744;
  transition: transform 0.3s ease;
  text-align: left;
}

.team-card h3 {
  color: #ff00cc;
  font-size: 20px;
  margin-bottom: 10px;
  text-shadow: 0 0 6px #ff00cc;
}

.team-card p {
  color: #eee;
  font-size: 15px;
  text-shadow: 0 0 5px #00fff7aa;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #ff00ccaa, 0 0 30px #00fff7aa;
}
