    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Open Sans', sans-serif;
    }

    body {
      padding-top: 0;
    }
	
/* ==== HEADINGS ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  color: #007e3e;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 20px;
}	

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: auto;
      height: 60px;
      background-color: rgba(0, 0, 0, 0.7);
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      border-radius: 0 0 30px 30px;
      padding: 0 30px;
      backdrop-filter: blur(5px);
    }

    .nav-icons {
      display: flex;
      gap: 40px;
    }

    .nav-icon {
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: all 0.3s ease;
      padding: 10px 0;
      position: relative;
      text-decoration: none;
    }

    .nav-icon .svg-icon {
      width: 24px;
      height: 24px;
      filter: invert(1);
      transition: all 0.3s ease;
    }

    .nav-icon:hover .svg-icon {
      filter: invert(0.7) sepia(1) saturate(5) hue-rotate(80deg);
      transform: translateY(-3px);
    }

    .nav-icon:nth-child(3) .svg-icon {
      filter: invert(1);
    }

    .nav-icon:nth-child(3):hover .svg-icon {
      filter: invert(0.2) sepia(1) saturate(30) hue-rotate(0deg);
      transform: translateY(-3px);
    }

    .nav-icon .icon-text {
      font-size: 12px;
      margin-top: 5px;
      font-weight: 500;
      opacity: 0;
      position: absolute;
      top: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 4px 8px;
      border-radius: 4px;
      white-space: nowrap;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .nav-icon:hover .icon-text {
      opacity: 1;
    }

    .nav-icon::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 3px;
      background-color: #2ecc71;
      transition: width 0.3s ease;
    }

    .nav-icon:hover::after {
      width: 100%;
    }

    /* ===== CONTAINER ===== */
    .container, .container1, .inner-centered{
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }
  
	.inner-centered img {
	width: 100%;
	height: auto;
	display: block;
	}	

/* ==== BANNER ==== */
.banner {
  text-align: center;
  background-color: #007e3e;
  padding: 20px;
  min-height: 180px; /* <-- riserva spazio */
}

.banner-text {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 20px auto;
  padding: 0 20px;
  word-wrap: break-word;
  color: #fff;
}

.banner-button {
  display: inline-block;
  padding: 12px 32px;
  background-color: #005f3c;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  border: 2px solid #ffffff;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.banner-button:hover {
  background-color: #00c569;
  border-color: #ffffff;
}



	    /* ===== FOOTER ===== */
    .footer {
      background-color: #000;
      padding: 20px 0;
      text-align: center;
      width: 100%;
    }

    .footer-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
    }

    .footer-wrapper img {
      max-width: 200px;
      width: 100%;
      height: auto;
      display: block;
      margin-bottom: 10px;
    }

    .footer-wrapper p {
      font-size: 0.85rem;
      color: #ccc;
      margin: 0;
    }

    /* ===== MEDIA QUERIES ===== */
    @media (max-width: 768px) {
      .nav-icons {
        gap: 20px;
      }
      
      .nav-icon .svg-icon {
        width: 20px;
        height: 20px;
      }
      
    }