* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
  }
  
  body {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #333;
    line-height: 1.6;
  }
  
  header {
    background: #ffffffcc;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
  }
  
  .logo {
    font-size: 28px;
    font-weight: bold;
    color: #2b5876;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #2b5876;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #4e4376;
  }
  
  .hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    animation: fadeIn 2s ease-in;
  }
  
  .hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .hero button {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    background: white;
    color: #764ba2;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .hero button:hover {
    transform: scale(1.05);
  }
  
  .servizi {
    padding: 60px 20px;
    text-align: center;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
    max-width: 1000px;
    margin-inline: auto;
  }
  
  .card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .contatti {
    background: #ffffffcc;
    padding: 50px 20px;
    text-align: center;
  }
  
  .contatti-link a {
    display: inline-block;
    margin: 10px 15px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .whatsapp-btn {
    background: #25d366;
    color: white;
  }
  
  .email-btn {
    background: #007bff;
    color: white;
  }
  
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  