    /* Variabili CSS */
    :root {
      --primary-color: #FF8C00;
      --primary-dark: #E67E00;
      --primary-light: #FFA033;
      --dark-bg: #121212;
      --dark-bg-lighter: #1e1e1e;
      --light-text: #ffffff;
      --accent-color: #f8f8f8;
      --section-padding: 60px 20px;
      --gradient-bg: linear-gradient(135deg, rgba(255, 140, 0, 0.8), rgba(230, 126, 0, 0.9));
      --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      --neon-glow: 0 0 10px rgba(255, 140, 0, 0.6), 0 0 20px rgba(255, 140, 0, 0.4);
      --glassmorphism: rgba(30, 30, 30, 0.7);
    }

    /* Reset e stili di base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    html {
      scroll-behavior: smooth;
      touch-action: manipulation;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: 'Poppins', Arial, sans-serif;
      background-color: var(--dark-bg);
      background-image: 
      radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.15) 0%, transparent 30%),
      radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.1) 0%, transparent 40%);
      color: var(--light-text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent, rgba(18, 18, 18, 0.3));
      pointer-events: none;
      z-index: -1;
    }

    /* Animazioni */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    @keyframes glow {
      0% { box-shadow: 0 0 5px rgba(255, 140, 0, 0.5); }
      50% { box-shadow: 0 0 20px rgba(255, 140, 0, 0.8); }
      100% { box-shadow: 0 0 5px rgba(255, 140, 0, 0.5); }
    }


    /* Main content */
    main {
      padding-top: 100px;
      min-height: calc(100vh - 100px);
    }

    /* Chi Siamo sezione */
    .about-section {
      padding: var(--section-padding);
      max-width: 700px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
      font-size: 48px;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
      padding-bottom: 15px;
      font-weight: 700;
      color: var(--light-text);
      text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: var(--primary-color);
      box-shadow: var(--neon-glow);
      animation: glow 2s infinite;
    }

    .about-content {
      background-color: var(--glassmorphism);
      border-radius: 20px;
      padding: 35px;
      margin-bottom: 40px;
      box-shadow: var(--box-shadow);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      font-size: 19px;
    }

    .about-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    }

    .about-text {
      margin-bottom: 25px;
      font-size: 16px;
    }

    .about-text p {
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .about-text p:hover {
      transform: translateX(5px);
    }

    .mission {
      margin-top: 20px;
    }

    .mission h3 {
      color: var(--primary-color);
      margin-bottom: 15px;
      font-size: 22px;
      letter-spacing: 1px;
      text-shadow: 0 0 5px rgba(255, 140, 0, 0.3);
    }

    .team-section {
      margin-top: 80px;
    }

    .team-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .team-member {
      background-color: var(--glassmorphism);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .team-member:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    }

    .member-image {
      height: 300px;
      background-size: cover;
      background-position: center;
      position: relative;
      transition: all 0.5s ease;
    }

    .team-member:hover .member-image {
      transform: scale(1.05);
    }

    .member-image::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(to top, rgba(18, 18, 18, 0.8), transparent);
      pointer-events: none;
    }

    .member-info {
      padding: 25px;
      position: relative;
      z-index: 2;
    }

    .member-name {
      font-size: 22px;
      color: var(--primary-color);
      margin-bottom: 5px;
      font-weight: 600;
      text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
    }

    .member-role {
      font-size: 14px;
      color: var(--light-text);
      opacity: 0.8;
      margin-bottom: 15px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .member-bio {
      font-size: 14px;
      line-height: 1.6;
    }

    /* Footer styles moved to footer.css */

    /* Media queries */
    @media (max-width: 768px) {
      .section-title {
        font-size: 38px;
      }
      
      .cta-button, button, a.button {
        min-height: 48px;
        font-size: 1rem;
        padding: 16px 24px;
        touch-action: manipulation;
      }
      
    }

    @media (max-width: 640px) {
      .section-title {
        font-size: 26px;
      }

      .about-content {
        padding: 25px;
        margin: 0 15px;
      }

      .team-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 480px) {
      .section-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 30px;
      }
      
      .about-content {
        padding: 20px 15px;
        border-radius: 12px;
      }

      .about-content p {
        font-size: 15px;
        line-height: 1.6;
      }
      
      .team-member {
        padding: 15px;
      }

      .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .team-member-name {
        font-size: 18px;
      }
      
      .team-member-role {
        font-size: 14px;
      }
      

      .cta-button {
        padding: 12px 25px;
        font-size: 14px;
        width: 90%;
        max-width: 280px;
      }



        .about-section,
        .team-section {
          padding-left: max(20px, env(safe-area-inset-left));
          padding-right: max(20px, env(safe-area-inset-right));
        }
      }
    

    /* iPhone 5/SE (smallest iPhones) */
    @media (max-width: 320px) {
      .section-title {
        font-size: 20px;
      }

      .about-content p {
        font-size: 14px;
      }

      .team-member-name {
        font-size: 16px;
      }
      
      .team-member-role {
        font-size: 13px;
      }
      
      .team-member-bio {
        font-size: 14px;
      }

      .cta-button {
        font-size: 13px;
        padding: 10px 20px;
      }
    }



    .cta-button {
      display: inline-block;
      padding: 15px 40px;
      background: linear-gradient(135deg, rgba(255, 140, 0, 0.8), rgba(230, 126, 0, 0.9));
      color: var(--light-text);
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
      z-index: 1;
    }

    .cta-button::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: all 0.6s ease;
      z-index: -1;
    }

    .cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(255, 140, 0, 0.4);
      letter-spacing: 1.5px;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:active {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255, 140, 0, 0.35);
    }

    @supports (padding-top: env(safe-area-inset-top)) {
      main, .about-section, .team-section {
        padding-top: max(20px, env(safe-area-inset-top));
      }
    }

    @supports (padding: max(0px)) {

      .hero {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
      }

      footer {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
        padding-bottom: max(20px, env(safe-area-inset-bottom));
      }
    }