/* Stili generali */
body {
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
    'Helvetica Neue', 'Ubuntu', sans-serif;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Ubuntu', sans-serif;
  margin: 0;
  padding: 20px;
  text-align: center;
}

header {
  margin-bottom: 20px;
}

header .logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

header h1 {
  font-size: 30px;
  font-weight: 900;
  color: #333;
  margin: 0;
}

/* Stile del piano Starter */
section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

section .product {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

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

section .product h3, section .product h5 {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #333;
  margin: 5px 0;
}

section .product h5.price {
  font-weight: 700;
  font-size: 24px;
  color: #000;
  margin-bottom: 20px;
}

section .product ul {
  list-style: disc inside;
  padding-left: 20px;
  text-align: left;
  margin-bottom: 20px;
}

section .product ul li {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

section .product .subtext {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  opacity: 0.7;
  margin-bottom: 20px;
}

section .product button {
  background: #62B6BE;
  color: white;
  font-size: 14px;
  border: 0;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.5px;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 0.2s ease;
}

section .product button:hover {
  background: #358F8C;
}

.highlight {
  background-color: #ffbf00; /* Giallo evidenziatore */
  color: #ffffff;
  font-weight: 600;
  padding: 0 5px;
  border-radius: 5px;
}

/* Stili per Tablet (768px - 1279px) */
@media (min-width: 768px) and (max-width: 1279px) {
  section {
    padding: 0 20px;
  }

  section .product {
    max-width: 70%;
  }
}

/* Stili per Mobile (fino a 767px) */
@media (max-width: 767px) {
  header h1 {
    font-size: 24px;
  }

  section {
    padding: 0;
  }

  section .product {
    width: 100%;
    max-width: 90%;
    padding: 20px;
  }

  section .product h3 {
    font-size: 16px;
  }

  section .product h5.price {
    font-size: 20px;
  }

  section .product ul li {
    font-size: 12px;
  }

  section .product button {
    font-size: 14px;
    padding: 8px 16px;
  }
}
