﻿/* =====================================================
   SAFETY NET IMMAGINI - condiviso da tutte le pagine
   evita che immagini larghe oltre il container creino
   overflow orizzontale o distorsione su risoluzioni diverse
   ===================================================== */
img, svg, video {
  max-width: 100%;
}

/* Modal a tendina Selezione paese  */
.slide-modal {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transition: bottom 0.5s ease;
  z-index: 1000;
}

.slide-modal.active {
  bottom: 0;
}

.modal-content {
  padding: 20px;
  overflow-y: auto;
  height: 100%;
}
.country-selection-container {
  min-height: 300px;
  
}

.close-btn {
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(128, 128, 128, 0.3);
}

/* ---------- Footer (style like your reference image) ---------- */

.footer {
  background-color: #040832; /* navy scuro */
  color: #fff;
  font-family: Arial, sans-serif;
  /* top 40px, right 80px, bottom 80px, left 80px */
  padding: 0px 70px 20px 70px;             /* padding interno per respiro */
}

/* allineamento policies al testo */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    padding-top: 20px; /* spazio extra per evitare sovrapposizione */
}


.footer-left {
  flex: 0 1 auto;          /* no grow: resta all'estremità sinistra */
  margin-top: 30px;
   max-width: 720px; /* stessa larghezza della descrizione */
}

.footer-logo img {
  height: 34px;             /* misura simile alla foto */
  display: block;
  margin-bottom: 14px;
  /* riga bianca corta sotto il logo */
  position: relative;
}

.footer-logo::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #ffffff;   /* bianca */
  margin-top: 14px;
}

/* testo descrittivo */
.footer-description p {
  margin: 18px 0 0 0;
  line-height: 1.33;
    letter-spacing: 0.06px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
  color: #fff;
  max-width: 450px;
  margin-top: 60px;
    font-family: OpenSans;
    font-size: 12px;
    font-weight: normal;

}

/* right block: policies */
.footer-policies {
  flex: 0 0 auto;         /* no grow, no shrink: resta all'estremità destra */
  width: 500px;            /* allineato a .footer-areas per coerenza verticale */
  display: flex;
  flex-direction: column;
  align-self: center;
    margin-top: 5%;
    /* 🔥 così viene allineata al blocco di testo */
}

.footer-policies h4 {
  margin: 0 0 18px 0; /* AZZURRO per "POLICIES" */
  text-transform: uppercase;
  letter-spacing: 0.6px;
    font-family: OpenSans;
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: 0.06px;
    text-align: left;
    color: #89c4fd;
}

.footer-policies ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr)); /* ora 3 colonne */
   gap: 12px 20px;
}


/* link e cerchietto con freccia */
.footer-policies li {
  align-items: center;
  display: flex;
  align-items: center;
}

.footer-policies a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
    font-family: EniTab;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
}

/* freccetta in cerchio prima di ogni link */
.footer-policies a::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;   /* 🔥 evita resize */
    min-height: 16px;
    margin-right: 12px;

    background-image: url("../../images/images tot/Chevron_right_circle.svg"); /* <-- path della tua immagine */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* riga divisoria principale (bianca) */
.footer-divider {
  border: none;
  height: 1px;
  background: #ffffff; /* bianca, come richiesto */
  margin: 32px 0;
   /* lieve attenuazione per non essere abbagliante */
}

/* bottom: info + aree principali */
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
    column-gap: 30px;   /* allineato a .footer-top per coerenza verticale */
}

/* info (sinistra) */
.footer-info {
  flex: 0 1 auto;          /* no grow: resta all'estremità sinistra */
  max-width: 720px;          /* stessa larghezza di .footer-left */
  width: 100%;               /* occupa tutta la larghezza disponibile fino a max-width */
  display: grid;
  grid-template-columns: 1fr 1fr; /* due colonne uguali */
  column-gap: 20px;           /* distanza tra le colonne */
  text-align: left;           /* testo allineato a sinistra */
}


.footer-info p {
  color: #fff;
  line-height: 1.5;
  text-align: left;
    font-family: OpenSans;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
}
.footer-info p strong {
  color: #89c4fd; /* azzurro */
  font-weight: 700;
  display: block;  /* forza a capo il resto del testo */
  margin-bottom: -20px;
}
/* aree principali (destra) */
.footer-areas {
  flex: 0 0 auto;          /* no grow, no shrink: resta all'estremità destra */
  width: 500px;             /* allineato a .footer-policies per coerenza verticale */

}

.footer-areas h4 {
  text-align: left;
  text-transform: uppercase;
    font-family: OpenSans;
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: 0.06px;
    text-align: left;
    color: #89c4fd;
}

.footer-areas ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* ora 3 colonne */
  gap: 20px 40px;
}

.footer-areas li {
  align-items: center;
  display: flex;
  align-items: center;
}

.footer-areas a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
    font-family: EniTab;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
}
/* Cerchietto con freccia a sinistra dei link */
.footer-areas a::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    min-width: 16px;   /* 🔥 evita resize */
    min-height: 16px;
    margin-right: 12px;

    background-image: url("../../images/images tot/Chevron_right_circle.svg"); /* <-- path della tua immagine */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.scroll-top-btn {
  position: fixed;          /* si posiziona relativo al footer-bottom */
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0958a5;   /* azzurro */
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}
.scroll-top-btn img {
    width: 45px;
    height: 45px;
}
.scroll-top-btn:hover,
.scroll-top-btn:focus,
.scroll-top-btn:active {
    background-color: #0958a5; /* stesso colore base */
}

 /*RESET BASE E BODY
   ========================= */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* =========================
   INTESTAZIONE (uguale alla homepage)
   ========================= */
.intestazione {
    background-color: #0d1e3c;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.intestazione-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #040832;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    margin-right: 10px;
}
.cta-button {
    background-color: #ffd300;
    color: #0d1e3c;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start; /* Allinea il bottone a sinistra */
    margin-top: 20px;

}
.Button-label {
    width: 171px;
    height: 18px;
    flex-grow: 0;
    font-family: EniTab;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: 0.48px;
    text-align: center;
    color: #040832;
}
.btn-yellow {
    background-color: #fed300;
    width: 220px;

    text-transform: uppercase;
    font-size: 14px;
    font-family: EniTabBold, sans-serif;
    font-weight: 700;
    margin-left: -480px;
}
.pdf a {
    height: 26px;
    flex-grow: 1;
    font-family: EniTab;
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: #040832;
    text-decoration: none;
}
.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
    position: relative;
    margin-left: 5px;
}

.logo-text::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    height: 130%;
    width: 1px;
    background-color: white;
}
.intestazione-links {
    display: flex;
    align-items: center;
    gap: 5px; /* spazio tra i link */
}

.intestazione-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-family: EniTab;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
}



.intestazione-links a .yellow-text {
    color: #ffd300;
}

.search-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: 20px;
}

.search-button svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.access-button {
    width: 96px;
    height: 48px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 14px 24px;
    border-radius: 8px;
    background-color: #ffd300;
    border: none;
    font-weight: bold;
    cursor: pointer;
    margin-left: 20px;
}
.text-button {
    flex-grow: 0;
    font-family: EniTab;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.14;
    letter-spacing: 0.42px;

    color: #040832;
}




.intestazione-nav {
    background-color: #181c42;
    padding: 18px 30px;
}

.nav-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin-right: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-family: EniTab;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a:hover {
    color:#87CEEB;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 30px;
    width: 0;
    height: 3px;
    background-color: #007BFF;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hamburger menu responsive */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    margin-left: 20px;
}
.background-image {
    border-top-right-radius: 20px;   /* puoi regolare il valore */
    border-bottom-right-radius: 20px;
    overflow: hidden; /* importante per arrotondare il contenuto */
}

.btn-indietro {
    font-family: EniTab;
    font-size: 14px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.14;
    letter-spacing: 0.42px;
    text-align: center;
    color: #0958a5;
    text-decoration: none;
}
.link-return {
    font-family: EniTab;
    font-size: 16px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: 0.48px;
    text-align: left;
    color: #0958a5;
    text-decoration: none;
}

    .separator {
        width: 1px;
        height: 16px;
        flex-grow: 0;
        color: #0958a5;
        margin-left:-15px;
    }
.final-link {
    display: none;
}



/*MOBILE OFFERTA */
@media screen and (max-width: 767px) {

    .hamburger {
    display: block;
    cursor: pointer;
    font-size: 28px;
    color: white;
    margin-left: auto;
  }
    .final-link {
        display: none;
    }
    .btn-indietro {
        font-family: EniTab;
        font-size: 14px;
        font-weight: bold;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.14;
        letter-spacing: 0.42px;
        text-align: center;
        color: #0958a5;
        text-decoration: none;
    }
    .link-return {
        font-family: EniTab;
        font-size: 16px;
        font-weight: 300;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.13;
        letter-spacing: 0.48px;
        text-align: left;
        color: #0958a5;
        text-decoration: none;
    }

    .separator {
        width: 1px;
        height: 16px;
        flex-grow: 0;
        color: #0958a5;
        margin-left: 5px;
    }

  /* Header */
  .intestazione {
    width: 100%;
    margin: 0;
    
  }

  .intestazione-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    
  }

  .logo-container {
      flex: 1;
      display: flex;        /* mancava questo */
      justify-content: flex-start;
      align-items: center;
      width: auto;
  }
    .logo {
        height: 30px;
        margin-right: 10px;
    }

  .intestazione-links {
    display: none;
  }

  .intestazione-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .intestazione-nav.active {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    padding: 0;
    margin: 0;
  }

  .nav-menu li {
    margin: 8px 0;
  }

  /* Main content: immagine sopra testo */
  .main-content-offer {
    flex-direction: column;
    margin-right: 10px;
  }

  .image-container-offer {
    display: none;
  }
  .text-container-offer {
    width: 88%;
    padding: 0;
    margin-left: 20px;
  }

  .image-container-offer::after {
    display: none;
  }

  .background-image-offer {
    height: auto;
  }

  .text-container-offer {
    text-align: center;
    padding: 20px 0;
  }
  /* Cards */
  .cards-wrapper-offer{
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 90% !important;
  }
  .scroll-top-btn {
    
    bottom: 10px;
    right: 10px;
    z-index: 9999; 
  }
  /* Wrapper generale sezioni */

  .clients-section-offer,
  .opzioni-offerta,
    .footer {
    width: 100% !important;
    margin-top: 40px !important; ;
      padding: 10px;
    
  }
    .intestazione {
        padding:0px;
    }
  .opzioni-offerta {
  padding: 0px 0px;
  
  margin: 10px 10px;
}
.request-button {
  display: inline-block;
  padding: 15px 40px;
  

  /* Colore del testo e del bordo di base */

  
  border-radius: 30px;
  text-decoration: none;

  letter-spacing: 1px;
  /* Transizione per un effetto fluido */
  transition: background-color 0.3s ease, color 0.3s ease;
}
    .footer-areas {
    margin-left: 0;
    text-align: left;
    margin-right: 35px;
    flex: 1.5 1 0px !important;
  }
  .footer-logo::after {
        position: relative;   /* ora segue il flusso del contenitore */
        width: 100% !important;          /* occupa tutta la larghezza del container */
        margin-top: 10px;     /* spazio sotto il logo */
    }
    .footer-info {
    flex: 0 0;
  max-width: 500px;          /* stessa larghezza della descrizione */
  width: 100%;               /* occupa tutta la larghezza disponibile */
  display:  block ;
  grid-template-columns: 1fr 1fr; /* due colonne uguali */
  column-gap: 20px;           /* distanza tra le colonne */
  text-align: left;           /* testo allineato a sinistra */
}
    
   .footer-info::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background-color: #ffffff; /* bianca */
        margin-top: 20px;          /* spazio sopra la linea */
    }
  .footer-top { flex-direction: column; gap: 10px; }
  .footer-logo::after { width: 140px;
  display: none;}
  .footer-policies { max-width: 100%;
    margin-top: 20px !important;
      flex: 0 0;}
  .footer-policies ul {
    display: grid;          /* Assicurati che sia un grid */
    grid-template-columns: 1fr 1fr !important;  /* Due colonne per le policies */
    gap: 18px 20px;
  } 
  .footer-bottom { flex-direction: column; gap: 5px; }
  .footer-description p {
  margin: 18px 0 0 0;
  font-size: 12px;
  line-height: 1.8;
  color: #fff;
  max-width: 95%;
  margin-top: 60px;
}
.footer-areas ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}
}

/* ACCESSIBILITY */
/* BREADCRUMB / INDIETRO */
.access-breadcrumb-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.access-breadcrumb-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
}

.access-breadcrumb-back {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
    margin-right: 6px;
}

/* freccia */
.access-breadcrumb-back::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #007ad9;
    border-bottom: 2px solid #007ad9;
    transform: translateY(-50%) rotate(45deg);
}


.access-breadcrumb-link {
    text-decoration: none;
    color: #007ad9;
}

.access-breadcrumb-link--back {
    font-weight: 600;
}

.access-breadcrumb-separator {
    color: #9a9fa8;
    margin: 0 6px;
}

.access-breadcrumb-current {
    color: #9a9fa8;
}
.p-t-none {
    height: 40px;
    align-self: stretch;
    flex-grow: 0;
    font-family: EniTab;
    font-size: 32px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: center;
    color: #040832;
    margin-top: 80px;
}
.accessibility p {
    height: 56px;
    align-self: stretch;
    flex-grow: 0;
    font-family: OpenSans;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: center;
    color: #222;
    margin-bottom: 80px;
}
.accordion-title {
    position: relative;
    padding-right: 40px; /* spazio per l'icona a destra */
}
.accordion-title a {
    width: 680px;
    height: 32px;
    flex-grow: 0;
    font-family: EniTab;
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #0958a5 !important;
    background-color: white !important;
    text-decoration: none !important; /* 🔵 RIMUOVE SOTTOLINEATURA */
}
.accordion-title a.collapsed {
    color: #040832 !important;
    text-decoration: none !important; /* 🔵 RIMUOVE SOTTOLINEATURA */
}
.accordion-title a:before {
    content: "–";
    position: absolute;
    right: 0;                 /* allinea a destra */
    top: 50%;
    transform: translateY(-50%);

    width: 32px;
    height: 32px;
    flex-grow: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    background: #ffffff;      /* sfondo bianco */
    border: 2px solid #0077cc;/* bordo blu */
    color: #0077cc;           /* trattino blu */
    border-radius: 50%;       /* cerchio */
    font-size: 26px;
    line-height: 26px;
    font-weight: bold;
}
.accordion-title a.collapsed:before {
    content: "+";

}
.txt p {
    align-self: stretch;
    flex-grow: 0;
    font-family: OpenSans;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: #222;
    margin-top: 10px;
    margin-bottom: 50px;
}
.col-sm-pull-4 {
    right: 0 !important;
}
.col-sm-8 {
    width: 100%;
}
.txt li {
    font-family: OpenSans;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: #222;
}
.txt ul {
    margin-bottom: 20px;
}
.upper {
    height: 32px;
    align-self: stretch;
    flex-grow: 0;
    font-family: EniTab;
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #040832;
}
.key-generals .letter-cont {
    display: inline-flex;
    align-items: center;
    margin-right: 15px; /* distanziamento tra coppie */
}

.key-generals .letter-cont .ltt {
    font-size: 30px;
    font-family: EniTab !important;
    font-weight: 700;
    color: #0a3b60; /* blu eni */
    margin: 0 10px 0 0;
    line-height: 1;
}

.key-generals .letter-cont .go-to {

    height: 32px !important;
    flex-grow: 0;
    font-size: 20px;
    font-family: EniTab !important;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #222;
    margin: 0;
    display: flex;
    align-items: center; /* centra verticalmente */
}
/* Ripristina il flusso */
.key-generals::after {
    content: "";
    display: block;
    clear: both;
}
.accordion-body p {
    text-align: left;
    margin-bottom: 20px;
}

.accordion-body h2 {
    height: 32px;
    align-self: stretch;
    flex-grow: 0;
    font-family: EniTab;
    font-size: 20px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #040832;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonne fisse */
    gap: 25px;
    margin: 40px 0;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 0px 25px 25px;
    min-height: 220px;             /* più rettangolari */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card h3 {
    height: 64px;
    align-self: stretch;
    flex-grow: 0;
    font-family: EniTab;
    font-size: 24px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #222;
}

.card ol {
    height: 84px;
    align-self: stretch;
    flex-grow: 0;
    font-family: OpenSans;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: #222;
}

.card li {
    margin-bottom: 8px;
    align-self: stretch;
    flex-grow: 0;
    font-family: OpenSans;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: #222;
}

.smart-use {
    position: relative;
}

.smart-use::after {
    content: "";
    display: block;
    clear: both;
}
.txt2 p {
    height: 224px;
    align-self: stretch;
    flex-grow: 0;
    font-family: OpenSans;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: #222;

}
.access-ie-cont::after {
    content: "";
    display: block;
    clear: both;
}
.txt3 p {
    height: 168px;
    align-self: stretch;
    flex-grow: 0;
    font-family: OpenSans;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: #222;
}
.upper2 {
    height: 32px;
    align-self: stretch;
    flex-grow: 0;
    font-family: OpenSans;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #040832;
}
.instructions-edit-type-cont p {
    margin-bottom: 10px !important; /* riduce spazio sotto i paragrafi */
    font-family: OpenSans;
    font-size: 16px;
}

.instructions-edit-type-cont ul {
    margin-top: -25px !important;     /* riduce spazio sopra la lista */
    margin-bottom: 15px;            /* opzionale */
    margin-left: -15px !important;

}
.instructions-edit-type-cont li {
    align-self: stretch;
    flex-grow: 0;
    font-family: OpenSans;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: left;
    color: #222;
}
.instructions-edit-type-cont {
    margin-bottom: 40px !important; /* puoi aumentare o diminuire */
}
/* FIX GLOBALE — disattiva tutte le height fisse */
.p-t-none,
.accessibility p,
.card h3,
.card ol,
.txt2 p,
.txt3 p {
    height: auto !important;
}


body {
    overflow-x: hidden !important;
}


/* Responsive: sotto i 768px diventano una colonna */

@media (max-width: 768px) {

    /* MAIN CONTAINER FIX */
    #accessibility-page,
    .container {

        padding: 0 0px !important;
        max-width: 100% !important;
    }

    section::after,
    div::after {
        content: "";
        display: block;
        clear: both;
    }

    /* BREADCRUMB */
    .access-breadcrumb-inner {
        padding: 10px 15px !important;
        font-size: 12px !important;
        gap: 5px;
    }

    .accordion-title a {
        width: 100% !important;
    }

    .access-breadcrumb-link,
    .access-breadcrumb-current {
        font-size: 12px !important;
    }

    /* PAGE TITLE */
    .p-t-none {
        font-size: 22px !important;
        margin-top: 30px !important;
        height: auto !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    /* INTRO TEXT */
    .accessibility p {
        font-size: 14px !important;
        text-align: left !important;
        height: auto !important;
        padding: 0 10px !important;
        margin-bottom: 40px !important;
    }

    /* ACCORDION HEADERS */
    .accordion-title a {
        width: 100% !important;

        font-size: 18px !important;
        padding-right: 40px !important;
        line-height: 1.3 !important;
    }

    .accordion-title a:before {
        width: 28px !important;
        height: 28px !important;
        font-size: 20px !important;
    }

    /* GENERIC TEXT INSIDE SECTIONS */
    .txt p,
    .txt2 p,
    .txt3 p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        height: auto !important;
        margin-bottom: 20px !important;
    }

    /* LISTS */
    .txt li,
    .instructions-edit-type-cont li,
    .card li {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    /* LIST WRAPPER */
    .txt ul,
    .instructions-edit-type-cont ul {
        margin-left: 0 !important;
        padding-left: 20px !important;
    }

    /* TWO COLUMN GRID → SINGLE COLUMN */
    .cards-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .card {
        padding: 20px !important;
        min-height: auto !important;
    }

    .card h3 {
        font-size: 18px !important;
        height: auto !important;
        line-height: 1.2 !important;
    }

    /* COLUMNS FIX */
    .col-sm-8,
    .col-sm-6,
    .col-sm-pull-4 {
        width: 100% !important;
        right: 0 !important;
        float: none !important;
    }

    /* KEYBOARD SHORTCUT BLOCKS */
    .key-generals .letter-cont {
        margin-bottom: 10px !important;
        display: flex !important;
    }

    .key-generals .ltt {
        font-size: 22px !important;
        margin-right: 8px !important;
    }

    .key-generals .go-to {
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    /* FORCE TEXT LEFT IN ALL ACCORDION CONTENT */
    .accordion-body p {
        text-align: left !important;
    }

    .p-t-none,
    .accessibility p,
    .card h3,
    .card ol,
    .txt2 p,
    .txt3 p {
        height: auto !important;
    }



    html, body {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }


    /* REMOVE FIXED HEIGHTS */
    .upper,
    .upper2,
    .accordion-body h2 {
        height: auto !important;
        font-size: 18px !important;
    }

}

.btn-yellow {
    background-color: #fed300;
    width: 220px;

    text-transform: uppercase;
    font-size: 14px;
    font-family: EniTabBold, sans-serif;
    font-weight: 700;
    margin-left: 0 !important;
}

/* =========================================
   COOKIE BANNER - copiato da home.css
   ========================================= */

.cookie_bar_base .cookie-right {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.cookie_bar_base .cookie-right .cookie-accept,
.cookie_bar_base .cookie-right .cookie-reject {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
    height: 46px !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    white-space: nowrap !important;
}

/* =========================================
   COOKIE BANNER - layout HOME comune
   ========================================= */

.cookie_bar_base {
    display: block !important;
    position: fixed !important;
    left: 192px !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    margin: 0 !important;

    background: #ffffff !important;
    color: #040832 !important;
    z-index: 99999 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;

    border-top-left-radius: 28px !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.cookie_bar_base .container-fluid,
.cookie_bar_base .row,
.cookie_bar_base .col-sm-12.col-lg-10.col-lg-offset-1 {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
}

.cookie_bar_base .col-sm-12.col-lg-10.col-lg-offset-1 {
    position: relative !important;
    min-height: 252px !important;
    padding: 38px 157px 32px 40px !important;
}

.cookie_bar_base .cookie-layout {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 0 !important;
}

.cookie_bar_base .cookie-left {
    width: calc(100% - 517px) !important;
    max-width: calc(100% - 517px) !important;
    flex: 0 0 calc(100% - 517px) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cookie_bar_base .cookie-left h2 {
    margin: 0 0 20px 0 !important;
    height: auto !important;
}

.cookie_bar_base .cookie-left span {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    line-height: 1.5 !important;
}

.cookie_bar_base .cookie-right {
    position: absolute !important;
    top: 32px !important;
    right: 229px !important;
    width: 240px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;

    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.cookie_bar_base .cookie-right .cookie-accept,
.cookie_bar_base .cookie-right .cookie-reject {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important;
    height: 54px !important;

    padding: 0 !important;
    border-radius: 30px !important;
    box-sizing: border-box !important;
    text-align: center !important;
    white-space: nowrap !important;
}

/* ===== colori pulsanti cookie ===== */

.cookie_bar_base .cookie-right .cookie-accept {
    background-color: #ffd300 !important;
    border: 2px solid #ffd300 !important;
    color: #040832 !important;
}

.cookie_bar_base .cookie-right .cookie-reject {
    background-color: #ffffff !important;
    border: 2px solid #040832 !important;
    color: #040832 !important;
}

.cookie_bar_base .cookie-settings-link {
    display: block !important;
    margin-top: 8px !important;
    text-align: center !important;
    white-space: nowrap !important;
}

.cookie_bar_base .btn-close {
    position: absolute !important;
    top: 42px !important;
    right: 157px !important;
    width: 14.7px !important;
    height: 14.7px !important;
    min-width: 14.7px !important;
    min-height: 14.7px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 10 !important;
    opacity: 1 !important;
}

.cookie_bar_base .btn-close .icon-close {
    display: none !important;
}

.cookie_bar_base .btn-close::before,
.cookie_bar_base .btn-close::after {
    content: "" !important;
    position: absolute !important;
    width: 14.7px !important;
    height: 1.5px !important;
    background: #0958a5 !important;
    left: 0 !important;
    top: 50% !important;
}

.cookie_bar_base .btn-close::before {
    transform: translateY(-50%) rotate(45deg) !important;
}

.cookie_bar_base .btn-close::after {
    transform: translateY(-50%) rotate(-45deg) !important;
}

.cookie_bar_base .container-fluid.relative::before,
.cookie_bar_base .container-fluid::before,
.cookie_bar_base .relative::before {
    content: none !important;
    display: none !important;
}

/* =========================================
   COOKIE BANNER - tipografia uniforme come HOME
   ========================================= */

.cookie_bar_base,
.cookie_bar_base * {
    font-stretch: normal !important;
    font-style: normal !important;
}

.cookie_bar_base .cookie-left h2 {
    font-family: EniTab, Arial, sans-serif !important;
    font-size: 40px !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
    letter-spacing: normal !important;
    text-align: left !important;
    color: #040832 !important;
}

.cookie_bar_base .cookie-left span {
    font-family: OpenSans, Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: normal !important;
    line-height: 1.75 !important;
    letter-spacing: normal !important;
    text-align: left !important;
    color: #222 !important;
}

.cookie_bar_base .cookie-left span a {
    font-family: OpenSans, Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: normal !important;
    line-height: 1.75 !important;
    color: #0958a5 !important;
    text-decoration: underline !important;
}

.cookie_bar_base .cookie-right .cookie-accept,
.cookie_bar_base .cookie-right .cookie-reject {
    font-family: EniTab, Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: bold !important;
    line-height: 1.13 !important;
    letter-spacing: 0.48px !important;
    text-align: center !important;
}

.cookie_bar_base .cookie-right .cookie-accept {
    background-color: #ffd300 !important;
    border: 2px solid #ffd300 !important;
    color: #040832 !important;
}

.cookie_bar_base .cookie-right .cookie-reject {
    background-color: #ffffff !important;
    border: 2px solid #040832 !important;
    color: #040832 !important;
}

.cookie_bar_base .cookie-settings-link {
    font-family: OpenSans, Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: normal !important;
    line-height: 1.3 !important;
    letter-spacing: normal !important;
    color: #0958a5 !important;
    text-decoration: underline !important;
}

/* =========================================
   COOKIE BANNER - MOBILE
   ========================================= */

@media screen and (max-width: 767px) {

    .cookie_bar_base {
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: none !important;

        background: #ffffff !important;
        border-top-left-radius: 28px !important;
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;

        padding: 0 !important;
        overflow: hidden !important;
    }

    .cookie_bar_base .container-fluid,
    .cookie_bar_base .row,
    .cookie_bar_base .col-sm-12.col-lg-10.col-lg-offset-1 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .cookie_bar_base .col-sm-12.col-lg-10.col-lg-offset-1 {
        min-height: auto !important;
        padding: 86px 15px 34px 15px !important;
        position: relative !important;
    }

    .cookie_bar_base .cookie-layout {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .cookie_bar_base .cookie-left {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .cookie_bar_base .cookie-left h2 {
        margin: 0 0 12px 0 !important;
        font-family: EniTab, Arial, sans-serif !important;
        font-size: 18px !important;
        font-weight: bold !important;
        line-height: 1.25 !important;
        color: #040832 !important;
    }

    .cookie_bar_base .cookie-left span {
        display: block !important;
        font-family: OpenSans, Arial, sans-serif !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
        color: #222222 !important;
    }

    .cookie_bar_base .cookie-left span a {
        font-family: OpenSans, Arial, sans-serif !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
        color: #0958a5 !important;
        font-weight: bold !important;
        text-decoration: underline !important;
    }

    .cookie_bar_base .cookie-right {
        position: static !important;
        width: 100% !important;
        margin-top: 34px !important;
        padding: 0 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 24px !important;
    }

    .cookie_bar_base .cookie-right .cookie-accept,
    .cookie_bar_base .cookie-right .cookie-reject {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        height: 48px !important;

        border-radius: 30px !important;
        font-family: EniTab, Arial, sans-serif !important;
        font-size: 14px !important;
        font-weight: bold !important;
        letter-spacing: 0.42px !important;
        text-align: center !important;
    }

    .cookie_bar_base .cookie-right .cookie-accept {
        background-color: #ffd300 !important;
        border: 2px solid #ffd300 !important;
        color: #040832 !important;
    }

    .cookie_bar_base .cookie-right .cookie-reject {
        background-color: #ffffff !important;
        border: 2px solid #040832 !important;
        color: #040832 !important;
    }

    .cookie_bar_base .cookie-settings-link {
        margin-top: 4px !important;
        text-align: center !important;
        font-family: OpenSans, Arial, sans-serif !important;
        font-size: 14px !important;
        font-weight: bold !important;
        line-height: 1.3 !important;
        color: #0958a5 !important;
        text-decoration: underline !important;
    }

    .cookie_bar_base .btn-close {
        top: 38px !important;
        right: 16px !important;
        width: 14.7px !important;
        height: 14.7px !important;
        min-width: 14.7px !important;
        min-height: 14.7px !important;
    }
}
