	html {
      scroll-behavior: smooth;
    }
	
	body {
	  margin: 0;
      font-family: 'Lora', serif;
      line-height: 1.6;
      color: #333;
      background-color: #f8f9fa;
    }

    /* Testi */
    h1 {
      color: #1a5276;
      font-weight: 800;
      font-size: 2rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      font-family: 'Montserrat', sans-serif;
    }

    h2 {
      color: #1a5276;
      font-family: 'Montserrat', sans-serif;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      color: #4a4a4a;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    /* Layout */
    div {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    section {
      padding: 100px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
	
	header {
	  min-height: 100vh;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  text-align: center;
	  padding: 0 20px;
	  box-sizing: border-box;
	  background-color: #f0f0f0;
	}

    .section-content {
      display: flex;
      flex-direction: row;
      gap: 40px;
    }

    .section-text {
      flex: 1;
    }

    .section-image {
      flex: 1;
      text-align: center;
    }

    /* Bottoni */
    .btn {
      display: inline-block;
      padding: 12px 28px;
      background-color: #1a5276;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      box-shadow: 0 4px 6px rgba(26, 82, 118, 0.2);
      transition: all 0.3s ease;
    }

    .btn:hover {
      background-color: #154360;
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(26, 82, 118, 0.25);
    }

    .btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 4px rgba(26, 82, 118, 0.2);
    }

    /* Immagini */
    img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    img:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    /* Hero */
    header h1 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
    }

    header p {
      font-size: 1.5rem;
      max-width: 800px;
      margin: 0 auto 2.5rem;
      color: #4a4a4a;
    }

    .freccia {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      color: #1a5276;
      cursor: pointer;
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
      }
      40% {
        transform: translateY(-20px) translateX(-50%);
      }
      60% {
        transform: translateY(-10px) translateX(-50%);
      }
    }

    /* Cards */
    .card {
      background-color: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-bottom: 20px;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    /* Badges */
    .badge {
      display: inline-block;
      background-color: #71acd1;
      color: #1a5276;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-right: 10px;
      margin-bottom: 10px;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    /* Highlights */
    .highlight {
      color: #1a5276;
      font-weight: 600;
    }

    /* Quotes */
    .quote {
      font-style: italic;
      border-left: 4px solid #1a5276;
      padding-left: 1em;
      margin: 1.5em 0;
      color: #555;
    }

    /* Footer */
    footer {
      background-color: #1a5276;
      color: white;
      text-align: center;
      padding: 80px 0 40px;
    }

    footer h3 {
      color: #ffffff;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      font-family: 'Montserrat', sans-serif;
    }

    .copyright {
      color: #a3c6e0;
      font-size: 0.9rem;
      margin-top: 1rem;
      font-family: 'Montserrat', sans-serif;
    }

    /* Reverse layout */
    .reverse {
      flex-direction: row-reverse;
    }

    /* Elementi liste */
    li {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }

    .numero_lista {
      display: inline-block;
      width: 30px;
      height: 30px;
      background: #1a5276;
      color: white;
      border-radius: 50%;
      text-align: center;
      line-height: 30px;
      margin-right: 10px;
      font-weight: bold;
    }

    .testo_lista {
      font-weight: 600;
      color: #1a5276;
    }