    :root {
      --main-color: rgb(58, 169, 203);
      --main-dark: #0078b5;
      --white: #ffff;
    }

    body {
      font-family: "Poppins", sans-serif;
      background-color: #f8f9fa;
      color: #333;
      overflow-x: hidden;
    }

    .title-style {
      color: var(--main-color);
    }

    /* Navbar */
    .navbar {
      background-color: transparent;
      transition: background-color 0.3s ease;
      z-index: 1000;
    }

    .navbar.scrolled {
      background-color: var(--main-color);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
      color: var(--white) !important;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: var(--main-dark) !important;
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 100vh;
      background: url('/asset/img/header.jpg') center/cover no-repeat fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-color: rgba(0, 159, 227, 0.55);
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .hero p {
      font-size: 1.2rem;
      margin-top: 15px;
    }

    /* Sezioni */
    section {
      padding: 100px 0;
    }

    .services .card {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .services .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .service-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    /* Contatti */

    .contact-info {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
      width: 100%;
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      color: var(--main-color);
      gap: 0.8rem;
      min-width: 250px;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .contact-info-item:hover {
      transform: translateY(-3px);
    }

    .contact-info-item i {
      font-size: 1.5rem;
      background: rgba(255, 255, 255, 0.2);
      padding: 10px;
      border-radius: 50%;
    }

    .contact-card {
      background-color: var(--main-color);
      color: #fff;
      border-radius: 20px;
      padding: 40px;
      max-width: 700px;
      margin: 0 auto;
    }

    .map-card {
      border-radius: 20px;
      max-width: 700px;
      margin: 0 auto;
    }

    .form-control {
      border-radius: 10px;
      border: none;
    }

    .btn-send {
      width: 100%;
      border-radius: 10px;
      background-color: #fff;
      color: var(--main-color);
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-send:hover {
      background-color: var(--main-dark);
      color: #fff;
    }

    footer {
      text-align: center;
      padding: 30px 0;
      color: #555;
    }