 /* Reset e Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #333;
            background-color: #fff;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            padding: 3rem 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-left {
            padding: 2rem 0;
        }

        .logos {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 5rem;
        }

        .logos img {
            height: 80px;
            object-fit: contain;
        }

        .logos span {
            font-size: 1.5rem;
            color: #666;
        }

        .hero h1 {
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .accent-line {
            width: 55%;
            height: 2px;
            background-color: #84BD00;
            margin: 1.5rem 0;
        }

        .hero-description {
            font-size: 28px;
            margin-bottom: 1rem;
        }

        .hero-description-bold {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Geometric Background */
        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .hero-bg-green {
          position: absolute;
          bottom: 0;
          right: 0;
          height: 40%;
          background-color: #8cc63f;
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
          aspect-ratio: 1 / 1;
        }

        .hero-bg-dark {
          position: absolute;
          bottom: 0;
          right: 0;
          height: 20%;
          aspect-ratio: 1 / 1;
          background-color: #404040;
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
        }

        /* Services Section */
        .services {
            padding: 6rem 0;
            background-color: #F6F6F6;
        }

        .services h2 {
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            color: #333;
        }

        .services-grid {
            display: flex;
            justify-content: center;
            gap: 0;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .services-grid .col{
          width: 100%;
          padding: 0 1rem;
          margin-bottom: 2rem;
        }

        .service-card {
          background-color: #fff;
          border: 1px solid #8cc63f;
          border-radius: 6rem 0.6rem;
          padding: 2rem 1.5rem;
          text-align: center;
          transition: box-shadow 0.3s ease;
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
          height: 100%;
        }

        .service-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 95px;
            height: 95px;
            margin: 0 auto 1rem;
        }

        .service-icon img {
            width: 100%;
            height: 100%;
            stroke: #333;
            stroke-width: 1.5;
            fill: none;
        }

        .service-card h3 {
          font-size: 1.1rem;
          font-weight: 800;
          text-transform: uppercase;
          /* margin-bottom: 1rem; */
          color: #333;
          line-height: 2rem;
        }

        .service-card p {
            font-size: 0.875rem;
            color: #666;
            line-height: 1.2;
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.875rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 2rem;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: 1px solid #404040;
        }

        .btn-primary {
            background-color: #8cc63f;
            color: #404040;
        }

        .btn-primary:hover {
            background-color: #7ab52f;
        }

        .btn-secondary {
            background-color: #404040;
            color: #fff;
        }

        .btn-secondary:hover {
            background-color: #333;
        }

        /* Location Section */
        .location {
            position: relative;
            padding: 8rem 0;
            overflow: hidden;
        }

        .location-bg {
            position: absolute;
            inset: 0;
            background-image:url(../img/mappa-italy-l.png)
        }

        .location-content {
            position: relative;
            z-index: 10;
            max-width: 156rem;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 7rem 0.7rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            padding: 4rem 2rem;
            text-align: center;
        }

        .location h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #333;
        }

        .location p {
            font-size: 32px;
            color: #373A36;
            margin-bottom: 0.5rem;
        }

        .location .accent-line {
            margin: 2rem auto;
        }

        /* Footer */
        .footer {
            background-color: #404040;
            color: #fff;
            padding: 3rem 0;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .footer-logo img {
            height: 3rem;
            object-fit: contain;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            font-size: 0.875rem;
        }

        .footer-copyright a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin: 1rem 0;
        }

        .footer-copyright a:hover {
            color: #8cc63f;
        }

        .footer-copyright {
            margin-top: 2rem;
            padding-top: 3rem;
            border-top: 1px solid white;
            text-align: center;
            font-size: 0.875rem;
            color: white;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }

            .services h2 {
                font-size: 2.5rem;
            }

          .services-grid .col{
            width: 50%;
            padding: 0 1rem;
            margin-bottom: 2rem;
          }

            .location h2 {
                font-size: 3rem;
            }

            .location-content {
                padding: 4rem;
            }

            .footer-content {
                flex-direction: row;
                justify-content: space-between;
            }

          .footer-copyright a {
              display: inline-block;
              margin: 0 3rem;
          }

          .hero-bg-green {
            height: 90%;
          }

          .hero-bg-dark {
            height: 50%;
          }
        }

        @media (min-width: 1024px) {
            .hero {
                padding: 5rem 0;
                min-height: 100vh;
            }

            .hero h1 {
                font-size: 48px;
            }

          .services-grid .col{
            width: 25%;
            padding: 0 1rem;
            margin-bottom: 2rem;
          }

          .footer-copyright a {
              display: inline-block;
              margin: 0 3rem;
          }

          .hero-bg-green {
            height: 100%;
          }

          .hero-bg-dark {
            height: 60%;
          }
        }
