body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin-top: 80px;
  background: linear-gradient(135deg, #f5f5f5, #cfe9ff);
  color: #222;
}

h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

p {
  font-size: 20px;
}

form {
  margin-top: 40px;
  display: inline-block;
  text-align: left;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

label {
  display: block;
  margin-top: 10px;
}

input {
  width: 250px;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}


.main-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

/* CONTENITORE PERCORSI */
.paths-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* CARD LINK */
.path-card {
  width: 260px;
  text-decoration: none;
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: #222;
}

.path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* NUMERO */
.path-number {
  font-size: 36px;
  font-weight: bold;
  color: #2a7fff;
  margin-bottom: 10px;
}

/* TESTO */
.path-text {
  font-size: 18px;
  line-height: 1.4;
}

