@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* REGOLAZIONI GENERALI */
html {
    box-sizing: border-box;
    height: 100%;
    min-height: 100vh;

    overflow-x: hidden;
}
*, *::before, *::after {
    box-sizing: inherit;
}


body {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    padding-top: 100px; 
    background-color: #ffffff;
    height: 100%;
    min-height: 100vh;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* SEZIONE NAVBAR */
.boxnav .NAVBAR {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%; 
    max-width: 1440px;
    height: 100px;
    background-color: rgba(255, 255, 255, 1);
    border-bottom: 2px solid rgba(68, 23, 186, 1); 
    z-index: 1000;
    transition: border-bottom 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
    box-shadow: none; 
}


.boxnav .NAVBAR.scrolled {
    border-bottom: none; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
}

.navbar-inner-container {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 151px 0 132px;
    box-sizing: border-box;
}

.boxnav .overlap-group {
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
    width: auto;
}

.boxnav .logo {
    width: 133px;
    height: 96px;
    object-fit: contain;
}

.boxnav .text-wrapper {
    font-family: "Julius Sans One", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 50.5px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}


.boxnav .desktop-faq,
.mobile-menu .mobile-faq {
    position: relative;
    width: fit-content;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: black;
    font-size: 33.5px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.boxnav .desktop-faq:hover,
.mobile-menu .mobile-faq:hover {
    color: #3729bd;
}

.boxnav .frame {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.boxnav .div {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}


.boxnav .frame.desktop-flags a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxnav .italy,
.boxnav .united-kingdom,
.boxnav .spain {
    position: relative;
    width: 25.22px;
    height: 25.22px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.boxnav .frame.desktop-flags .italy {
    margin-left: -1.00px;
}
.boxnav .frame.desktop-flags .spain {
    margin-right: -1.00px;
}

.boxnav .frame.desktop-flags a:hover .spain,
.boxnav .frame.desktop-flags a:hover .united-kingdom,
.boxnav .frame.desktop-flags a:hover .italy {
    transform: scale(1.1) rotate(45deg);
}


.hamburger-menu {
    display: none; 
    width: 30px; 
    height: 25px; 
    position: relative;
    cursor: pointer; 
    z-index: 1001; 
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: #0b1959;
    position: absolute; 
    left: 0; 
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

.hamburger-menu .bar:nth-child(1) {
    top: 0; 
}

.hamburger-menu .bar:nth-child(2) {
    top: 50%; 
    transform: translateY(-50%); 
}

.hamburger-menu .bar:nth-child(3) {
    top: 100%; 
    transform: translateY(-100%); 
}

.hamburger-menu.open .bar:nth-child(1) {
    top: 50%; 
    transform: translateY(-50%) rotate(45deg); 
}

.hamburger-menu.open .bar:nth-child(2) {
    opacity: 0; 
}

.hamburger-menu.open .bar:nth-child(3) {
    top: 50%; 
    transform: translateY(-50%) rotate(-45deg); 
}

.mobile-menu {
    display: none; 
    position: fixed;
    top: 100px; 
    right: 0; 
    left: auto; 
    transform: scale(0.95) translateY(-10px);
    opacity: 0; 
    width: 100%;
    max-width: 200px; 
    height: auto; 
    backdrop-filter: blur(10px);
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2); 
    flex-direction: column; 
    align-items: center; 
    padding: 10px 0; 
    transition: transform 0.6s ease-out, opacity 0.6s ease-out; 
    z-index: 999;
    overflow-y: auto;
    border-radius: 5px; 
}

.mobile-menu.open {
    display: flex; 
    transform: scale(1) translateY(0); 
    opacity: 1; 
}

.mobile-menu .mobile-faq {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-size: 18px; 
    color: #0b1959; 
    margin-bottom: 5px; 
    cursor: pointer;
    font-weight: 400;
    text-decoration: none; 
    padding: 12px 20px; 
    width: 100%; 
    box-sizing: border-box;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
}


.mobile-menu .language-selector-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.mobile-menu .language-selector-mobile .lang-option {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 400; 
    font-size: 18px; 
    color: #0b1959; 
    text-decoration: none;
    padding: 12px 20px; 
    width: 100%; 
    box-sizing: border-box;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
}

.mobile-menu.open .mobile-faq,
.mobile-menu.open .language-selector-mobile .lang-option {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu .mobile-faq:hover,
.mobile-menu .language-selector-mobile .lang-option:hover {
    text-decoration: underline;
    text-decoration-color: #3729bd;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
}


/* --- Media Queries per Navbar e Hamburger --- */

/* Breakpoint 1000px: Questo è il punto in cui l'hamburger compare e gli elementi desktop scompaiono */
@media (max-width: 1000px) {
    .navbar-inner-container {
        padding: 0 30px;
        justify-content: space-between;
    }

    .navbar-inner-container .desktop-flags,
    .navbar-inner-container .desktop-faq {
        display: none; 
    }

    .hamburger-menu {
        display: flex; /* Ora appare qui */
    }

    .boxnav .logo {
        width: 100px;
        height: 72px;
    }

    .boxnav .text-wrapper {
        font-size: 40px;
    }
}



/* Breakpoint 460px */
@media (max-width: 460px) {
    .boxnav .NAVBAR {
        height: 60px;
    }
    .navbar-inner-container {
        padding: 0 10px;
    }
    .boxnav .logo {
        width: 60px;
        height: 43px;
    }
    .boxnav .text-wrapper {
        font-size: 22px;
    }
    .mobile-menu {
        top: 60px;
        height: auto; 
        min-height: 160px; 
        max-height: calc(100vh - 60px); 
    }

    .hamburger-menu {
        height: 20px; 
        width: 25px; 
    }

    .hamburger-menu .bar {
        height: 2px; 
    }

    .hamburger-menu .bar:nth-child(1) {
        top: 0; 
    }

    .hamburger-menu .bar:nth-child(2) {
        top: 50%; 
        transform: translateY(-50%);
    }

    .hamburger-menu .bar:nth-child(3) {
        top: 100%; 
        transform: translateY(-100%);
    }

    .hamburger-menu.open .bar:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .hamburger-menu.open .bar:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }

    body {
        padding-top: 60px; 
    }
}

/* QUI INIZIA LA SEZIONE HERO */

.herocontainer {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 746px; 
    position: relative;
}

.herocontainer .HERO {
    width: 100%;
    min-height: 746px; 
}

.herocontainer .overlap-group1 {
    position: relative;
    width: 100%;
    min-height: 746px; 
}

.herocontainer .hero-area {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: #eff0f8;
    top: 0;
}


.herocontainer .banner-rocket {
    position: absolute;
    width: 16.32%; 
    height: auto;
    top: 62.19%; 
    left: 53.19%; 
    object-fit: cover;
}

.herocontainer .banner-human {
    position: absolute;
    width: 16.88%; 
    height: auto;
    top: 31.63%; 
    left: 76.87%; 
    object-fit: cover;
}

.herocontainer .banner-map {
    position: absolute;
    width: 30%; 
    height: auto;
    top: 0;
    left: 69.93%; 
    object-fit: cover;
}

.herocontainer .banner-wallet {
    position: absolute;
    width: 11.32%; 
    height: auto;
    top: 8.44%; 
    left: 55.49%; 
    object-fit: cover;
}

.herocontainer .banner-clock {
    position: absolute;
    width: 205px; 
    height: auto;
    top: 35px; 
    left: 1px; 
    object-fit: cover;
}

.herocontainer .banner-box {
    position: absolute;
    width: 315px; 
    height: auto;
    top: 479px; 
    left: 0; 
    object-fit: cover;
}

.herocontainer .testohero1 {
    position: absolute;
    width: 564px; 
    top: 291px; 
    left: 156px; 
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #0b1959;
    font-size: 26px;
    text-align: justify;
    letter-spacing: -0.26px;
    line-height: normal;
}

.herocontainer .titolo1 {
    position: absolute;
    width: 575px; 
    top: 120px; 
    left: 151px; 
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #262260;
    font-size: 52px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.herocontainer .titolo2 {
    position: absolute;
    width: 575px; 
    top: 174px; 
    left: 153px; 
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #262260;
    font-size: 52px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.herocontainer .titolo3 {
    position: absolute;
    width: 570px; 
    top: 63px; 
    left: 150px; 
    font-family: "Jost", Helvetica;
    font-weight: 400;
    color: #3729bd;
    font-size: 30px;
    letter-spacing: 0;
    line-height: normal;
}

.herocontainer .gruppo-bottoni {
    display: flex;
    width: 353px; 
    height: auto;
    align-items: center;
    gap: 40px;
    position: absolute;
    top: 614px; 
    left: 326px; 
}

.herocontainer .bottone-accedi {
    display: flex;
    width: 122.9px; 
    height: 56.87px; 
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #3729bd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(24, 85, 146, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.herocontainer .text-wrapper-4 {
    position: relative;
    width: fit-content;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-weight: 300;
    color: #ffffff;
    font-size: 20.2px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    text-align: center;
    padding: 10px 25px;
    text-decoration: none;
}

.herocontainer .bottone-iscriviti {
    display: flex;
    width: 122.9px; 
    height: 56.87px; 
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #3729bd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(24, 85, 146, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.herocontainer .bottone-accedi:hover, .herocontainer .bottone-iscriviti:hover {
    background-color: #4a3fd9;
    transform: translateY(-2px);
}

.herocontainer .bottone-accedi:active, .herocontainer .bottone-iscriviti:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(24, 85, 146, 0.2);
}

/* Breakpoint 1200px */

@media (max-width:1200px) {
.herocontainer .banner-wallet,
.herocontainer .banner-rocket {
    display: none;
}

}

/* Breakpoint 1000px (tablet grandi, desktop piccoli) */
@media (max-width: 1000px) {
    .herocontainer,
    .herocontainer .HERO,
    .herocontainer .overlap-group1,
    .herocontainer .hero-area {
        min-height: 500px;
    }

    
    .herocontainer .banner-rocket, 
    .herocontainer .banner-wallet, 
    .herocontainer .banner-clock { 
        display: none;
    }

    
    .herocontainer .banner-clock {
        width: 180px;
        top: 40px;
        left: 20px;
    }

    .herocontainer .banner-box {
        width: 220px;
        top: 320px;
        left: 0;
    }


    .herocontainer .titolo3 {
        font-size: 25px;
        width: auto;
        left: 5%;
        top: 5%;
    }

    .herocontainer .titolo1,
    .herocontainer .titolo2 {
        font-size: 45px;
        width: auto;
        left: 5%;
    }

    .herocontainer .titolo1 {
        top: 15%;
    }

    .herocontainer .titolo2 {
        top: 24%;
    }

    .herocontainer .testohero1 {
        width: 500px; 
        font-size: 19.4px;
        left: 5%;
        top: 38%;
        text-align: justify;
    }

    .herocontainer .gruppo-bottoni {
        width: auto;
        top: auto;
        bottom: 50px;
        left: 25%;
        gap: 20px;
        flex-wrap: wrap;
        position: absolute;
    }

    .herocontainer .bottone-accedi {
        width: 110px;
        height: auto;
        min-height: 40px;
        border-radius: 8px;
    }

    .herocontainer .bottone-iscriviti {
        width: 110px;
        height: auto;
        min-height: 40px;
        border-radius: 8px;
    }

    .herocontainer .text-wrapper-4 {
        font-size: 16px;
        padding: 8px 15px;
    }
}

@media (max-width: 950px) {
    .herocontainer .gruppo-bottoni {
        left:250px;
    }
}

@media (max-width:750px){
    .herocontainer .banner-human {
        display: none;

    }
}

@media (max-width: 619px) {
    .herocontainer .testohero1 {
        width: 90%; 
        font-size: 15px;
       
        text-align: justify; 
    }

    .herocontainer .titolo1,
    .herocontainer .titolo2 {
        font-size: 32px; 
    }
    .herocontainer .titolo3 {
        font-size: 18px; 
    }

    .herocontainer .banner-box {
     top: 250px;   

    }

    .herocontainer,
    .herocontainer .HERO,
    .herocontainer .overlap-group1,
    .herocontainer .hero-area {
        min-height: 420px; 
    }

    .herocontainer .gruppo-bottoni {
        left: 220px; 
        width: calc(100% - 220px - 20px); 
        bottom: 37px; 
        gap: 10px; 
    }
}

@media (max-width: 360px) {
    
    .herocontainer .banner-box {
        width: 180px;
        top: 280px;
        left: 0; 
    }

    .herocontainer .gruppo-bottoni {
        left: 190px; 
        width: calc(100% - 190px -10px); 
        gap: 8px; 
        bottom: 30px; 
        flex-direction: column; 
    }
    
    .herocontainer .bottone-accedi,
    .herocontainer .bottone-iscriviti {
        width: 100%; 
        max-width: none; 
        min-height: 35px; 
    }
    .herocontainer .text-wrapper-4 {
        font-size: 13px; 
        padding: 5px 10px; 
    }
}

@media (max-width: 319px) {

.herocontainer .gruppo-bottoni,
.herocontainer .bottone-accedi,
.herocontainer .bottone-iscriviti,
.herocontainer .text-wrapper-4 {

display: none;
}

}

/* QUI INIZIA LA SEZIONE BANNER 1 */

.banner1 {
    display: flex;
    flex-direction: column;
    width: 100%; 
    max-width: 1440px; 
    margin: 0 auto; 
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 60px 10%; 
    position: relative;
    background-color: #ffffff;
    box-sizing: border-box; 
}

.banner1 .text-wrapper {
    position: relative;
    width: fit-content; 
    margin-top: -1.00px;
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #262260;
    font-size: 22px; 
    letter-spacing: 0;
    line-height: normal;
    text-align: center; 
}

.banner1 .div { 
    position: relative;
    width: 100%; 
    max-width: 554px; 
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #262260;
    font-size: 40px; 
    letter-spacing: 0;
    line-height: 1.2; 
    text-align: center; 
    word-break: break-word; 
}

.banner1 .p { 
    position: relative;
    width: 100%; 
    max-width: 554px; 
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #262260;
    font-size: 26px; 
    letter-spacing: 0;
    line-height: normal;
    white-space: normal; 
    text-align: center; 
}


/* Breakpoint 1000px  */
@media (max-width: 1000px) {
    .banner1 {
        gap: 20px;
        padding: 50px 8%; 
    }

    .banner1 .text-wrapper {
        font-size: 20px; 
    }

    .banner1 .div {
        font-size: 36px; 
        max-width: 90%; 
    }

    .banner1 .p {
        font-size: 22px; 
        max-width: 90%;
    }
}

/* Breakpoint 750px */
@media (max-width: 750px) {
    .banner1 {
        gap: 15px;
        padding: 40px 5%; 
    }

    .banner1 .text-wrapper {
        font-size: 18px;
    }

    .banner1 .div {
        font-size: 30px;
    }

    .banner1 .p {
        font-size: 20px;
    }
}

/* Breakpoint 460px (Smartphone grandi / Tablet piccoli) */
@media (max-width: 460px) {
    .banner1 {
        gap: 10px;
        padding: 30px 5%; 
    }

    .banner1 .text-wrapper {
        font-size: 16px;
    }

    .banner1 .div {
        font-size: 24px;
        line-height: 1.3; 
    }

    .banner1 .p {
        font-size: 18px;
    }
}

/* Breakpoint 360px */
@media (max-width: 360px) {
    .banner1 {
        padding: 20px 4%; 
    }

    .banner1 .text-wrapper {
        font-size: 14px;
    }

    .banner1 .div {
        font-size: 20px;
    }

    .banner1 .p {
        font-size: 16px;
    }
}

/* QUI INIZIA LA SEZIONE BANNER 2 */

.banner2 {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 26px; 
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 0px;
    padding-bottom: 60px;
    padding-left: 0px;
    padding-right: 50px;
    background-color: #ffffff;
    box-sizing: border-box; 
    align-items: center; 
}

.banner2 .rectangle {
    width: 100%; 
    height: 100%; 
    max-width: 693px; 
    display: block; 
    object-fit: cover;
}

.banner2 .div { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    width: 100%;
    max-width: 576px;
    box-sizing: border-box;
}

.banner2 .div-2 { 
    display: flex;
    flex-direction: column;
    align-items: center;     
    justify-content: flex-start; 
    gap: 15px; 
    padding: 25px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 0.76px solid #262260;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1),
                -5px -5px 15px rgba(255, 255, 255, 0.7);
    transition: box-shadow 0.6s ease, transform 0.3s ease-in-out;
    text-align: center;
    box-sizing: border-box;
    min-height: 250px; 
}

.banner2 .global-payment-icon,
.banner2 .global-payment-icon-2 {
    height: 60px; 
    object-fit: contain; 
    display: block;
    margin: 0 auto;
}

.banner2 .global-payment-icon {
    width: 100px ;  
}

.banner2 .global-payment-icon-2 {
    width: 80px;
}

.banner2 .div-2 .text-wrapper {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 19.5px;
    color: #262260;
    line-height: 1.3;
}

.banner2 .div-2 .p {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 15.1px;
    color: #000000;
    line-height: 1.5;
    text-align: justify;
    text-align-last: center;
    word-break: break-word;
    flex-grow: 1; 
}

.banner2 .div-2:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border: none;
    
}
.banner2 .div-2:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* Breakpoint 1200px */
@media (max-width: 1200px) {
    .banner2 {
        grid-template-columns: 1fr; 
        gap: 40px; 
        padding: 0; 
        padding-bottom: 40px;

    }

    .banner2 .rectangle {
        max-width: 100%; 
        margin: 0; 
        height: 35vh;
        object-fit: cover;
    }

    .banner2 .div { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 20px; 
        max-width: 100%;
        margin: 0 auto; 
        padding: 0px 5%; 
        box-sizing: border-box; 

    }

    .banner2 .div-2 .text-wrapper {
        font-size: 18px;
    }

    .banner2 .div-2 .p {
        font-size: 14px;
    }
}

/* Breakpoint 1000px */
@media (max-width: 1000px) {
    
    .banner2 .div {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
        margin: 0 auto;
        padding: 0 15%; 
    }

    .banner2 .div-2 {
        padding: 25px 20px; 
        gap: 15px; 
        min-width: 200px; 
    }

    .banner2 .global-payment-icon,
    .banner2 .global-payment-icon-2 {
        height: 60px; 
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .banner2 .global-payment-icon {
        width: 100px; 
    }

    .banner2 .global-payment-icon-2 {
        width: 80px; 
    }

    .banner2 .div-2 .text-wrapper {
        font-size: 19.5px; 
    }

    .banner2 .div-2 .p {
        font-size: 15.1px; 
    }
}


/* Breakpoint 750px */

@media (max-width: 750px) {
    .banner2 {
        padding: 0; 
        gap: 40px;
        padding-bottom: 20px;
        box-sizing: border-box;
    }

    .banner2 .rectangle {
        max-width: 100%; 
        height: 30vh;
        object-fit: cover;
    }

    .banner2 .div { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
        margin-left: 4%; 
        margin-right: 4%; 
        width: auto; 
        padding: 0; 
        box-sizing: border-box;
    }

    .banner2 .div-2 { 
        padding: 20px 20px;
        gap: 10px;
        justify-content: flex-start;
        min-height: 200px;
    }

    
    .banner2 .div-2 .text-wrapper {
        font-size: 16px;
    }

    .banner2 .div-2 .p {
        font-size: 13px;
        margin-bottom: 0;
    }

    .banner2 .global-payment-icon,
    .banner2 .global-payment-icon-2 {
        height: 50px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .banner2 .global-payment-icon {
        width: 80px;
    }

    .banner2 .global-payment-icon-2 {
        width: 50px;
    }
}

@media (max-width: 500px) {
    .banner2 {
        padding: 0;
        gap: 30px; 
        padding-bottom: 30px;    
        box-sizing: border-box; 
    }

    .banner2 .rectangle {
        width: 100%;
        max-width: 100%;
        height: 25vh; 
        object-fit: cover;
    }

    .banner2 .div { 
        grid-template-columns: 1fr; 
        gap: 20px; 
        max-width: 90%; 
        padding: 0px 12%; 
        margin: 0 auto; 
    }

    .banner2 .div-2 { 
        padding: 15px 10px; 
        gap: 8px; 
        min-height: 80px; 
    }

    .banner2 .global-payment-icon,
    .banner2 .global-payment-icon-2 {
        height: 40px; 
        object-fit: contain; 
        display: block; 
        margin: 0 auto; 
    }

    .banner2 .global-payment-icon {
        width: 60px; 
    }

    .banner2 .global-payment-icon-2 {
        width: 40px; 
    }

    .banner2 .div-2 .text-wrapper {
        font-size: 15px; 
    }

    .banner2 .div-2 .p {
        font-size: 12px; 
        line-height: 1.4;
        min-height: 40px;
    }
}

/* Breakpoint 360px*/
@media (max-width: 360px) {
    .banner2 {
        padding: 0;
        gap: 20px; 
        padding-bottom: 20px; 
    }

    .banner2 .rectangle {
        width: 100%;
        max-width: 100%;
        height: 250px; 
        margin-bottom: 15px; 
    }

    .banner2 .div { 
        grid-template-columns: 1fr; 
        gap: 8px; 
        max-width: 95%; 
        padding: 0px 2%; 
        margin: 0 auto;
    }

    .banner2 .div-2 { 
        padding: 12px 8px; 
        gap: 5px; 
    }

    .banner2 .global-payment-icon,
    .banner2 .global-payment-icon-2 {
        width: 35px; 
    }

    .banner2 .div-2 .text-wrapper {
        font-size: 14px; 
    }

    .banner2 .div-2 .p {
        font-size: 11px; 
        line-height: 1.3; 
    }
}

/* QUI INIZIA BANNER 3 (BANNER SECTION) */

.banner-section {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0; 
    overflow: hidden;
    background-color: #ffffff;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.banner-section .banner-overlay-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto; 
    position: relative; 
    width: 100%;
    padding-top: 30px; 
    padding-bottom: 20px; 
    box-sizing: border-box;
    align-items: start; 
}

.banner-section .banner-background {
    grid-column: 1 / -1; 
    grid-row: 1 / -1;    
    position: static; 
    width: 100%;
    height: 400px; 
    object-fit: cover;
    z-index: 0;
}

.banner-section .banner-content-wrapper {
    grid-column: 1 / -1; 
    grid-row: 1 / -1;    
    position: relative; 
    width: 100%;
    max-width: 1174px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px; 
    box-sizing: border-box;
    z-index: 1; 
    margin-top: 25px; 
    margin-left: auto; 
    margin-right: auto;
}

.banner-section .banner-tagline {
    position: relative;
    width: 100%;
    max-width: 1140px;
    text-align: center;
    margin-bottom: 60px; /* Margine sotto l'intera tagline */
    color: #000000;
    font-size: 28px;
    line-height: normal;
}

.banner-section .banner-tagline .highlight-text {
    color: #3fff70;
    letter-spacing: -0.16px;
    font-family: "Jost", Arial, Helvetica, sans-serif;
    display: block;
    font-size: 28px;
    margin-bottom: -40px; 

}

.banner-section .banner-tagline .subtitle-text {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 50px;
    letter-spacing: 0;
    display: block;
    margin-bottom: -40px; 
}

.banner-section .banner-tagline .description-text {
    color: #ffffff;
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-size: 22px;
    letter-spacing: 0;
    line-height: normal;
    display: block;
    margin-bottom: -20px; 
}

.banner-section .steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17.9px;
    width: 100%;
    box-sizing: border-box;
    padding: 17.9px 0px 30px;
}

.banner-section .step-item {
    flex-direction: column;
    width: auto;
    gap: 36.69px;
    padding: 50.11px 26.84px;
    position: relative;
    background-color: #ffffff;
    border-radius: 9.98px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1),
                -5px -5px 15px rgba(255, 255, 255, 0.7);
    transition: box-shadow 0.6s ease, transform 0.3s ease-in-out;
    min-width: 0;
}

.banner-section .step-item:hover {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15),
                -2px -2px 8px rgba(255, 255, 255, 0.8);
    transform: translateY(-5px) scale(1.02);
}

.banner-section .step-item:active {
    transform: translateY(2px);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2),
                inset -2px -2px 5px rgba(255, 255, 255, 0.6);
}

.banner-section .step-icon {
    position: relative;
    width: 120px;
    height: 66.4px;
    object-fit: contain;
}

.banner-section .step-title {
    position: relative;
    align-self: stretch;
    height: auto;
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 17.9px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.banner-section .step-description {
    position: relative;
    align-self: stretch;
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 16.1px;
    text-align: justify;
    letter-spacing: 0;
    line-height: normal;
    text-align-last: center;
}

@media(max-width: 1200px) {

    .banner-section .steps-container {

        padding: 17.9px 40px 30px;
    }

.banner-section .step-item {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    width: auto;
    gap: 36.69px; 
    padding: 50.11px 26.84px;
    position: relative;
    background-color: #ffffff;
    border-radius: 9.98px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1),
                -5px -5px 15px rgba(255, 255, 255, 0.7);
    transition: box-shadow 0.6s ease, transform 0.3s ease-in-out;
    min-width: 0;
}

.banner-section .step-description {
     flex-grow: 1; 
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 16.1px;
    text-align: justify;
    letter-spacing: 0;
    line-height: normal;
    text-align-last: center;
    overflow-wrap: break-word;
    word-break: break-word;
}

.banner-section .step-icon {
    position: relative;
    width: 120px;
    height: 66.4px;
    object-fit: contain;
}

.banner-section .step-title {
    position: relative;
    align-self: center; 
    height: auto; 
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 17.9px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

}

/* Breakpoint 1000px  */
@media (max-width: 1000px) {
    .banner-section .banner-overlay-grid {
        padding-top: 120px; 
        padding-bottom: 15px; 
    }

    .banner-section .banner-background {
        height: 350px; 
    }

    .banner-section .banner-content-wrapper {
        margin-top: 50px; 
        padding: 0 15px; 
        max-width: 900px; 
    }

    .banner-section .banner-tagline {
        margin-bottom: 40px; 
    }

    .banner-section .banner-tagline .highlight-text {
        font-size: 24px; 
        margin-bottom: -30px; 
    }

    .banner-section .banner-tagline .subtitle-text {
        font-size: 42px; 
        margin-bottom: -30px; 
    }

    .banner-section .banner-tagline .description-text {
        font-size: 19px; 
        margin-bottom: -15px; 
    }

    .banner-section .steps-container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px; 
        padding: 15px 20px 25px; 
        max-width: 700px; 
        margin: 0 auto; 
    }

    .banner-section .step-item {
        gap: 25px; 
        padding: 35px 20px; 
    }

    .banner-section .step-icon {
        width: 100px; 
        height: 55px;
    }

    .banner-section .step-title {
        font-size: 16px; 
    }

    .banner-section .step-description {
        font-size: 14px; 
    }

    .banner-section .banner-overlay-grid {
   
        padding-top: 20px; 
        padding-bottom: 20px; 

    }
}

/* Breakpoint 500px  */
@media (max-width: 500px) {
    .banner-section .banner-overlay-grid {
        padding-top: 20px; 
        padding-bottom: 20px; 
    }

    .banner-section .banner-background {
        height: 250px; 
    }

    .banner-section .banner-content-wrapper {
        margin-top: 5px; 
        padding: 0 10px; 
        max-width: 100%; 
    }

    .banner-section .banner-tagline {
        margin-bottom: 50px; 
    }

    .banner-section .banner-tagline .highlight-text {
        font-size: 20px; 
        margin-bottom: -35px;
    }

    .banner-section .banner-tagline .subtitle-text {
        font-size: 30px; 
        margin-bottom: -40px;
    }

    .banner-section .banner-tagline .description-text {
        font-size: 15px; 
        margin-bottom: -15px;
    }

    .banner-section .steps-container {
        grid-template-columns: 1fr; 
        gap: 15px; 
        padding: 10px 15px 20px; 
        max-width: 350px; 
        margin: 0 auto; 
    }

    .banner-section .step-item {
        gap: 20px; 
        padding: 30px 15px; 
    }

    .banner-section .step-icon {
        width: 80px; 
        height: 45px;
    }

    .banner-section .step-title {
        font-size: 15px; 
    }

    .banner-section .step-description {
        font-size: 13px; 
    }
}

/* QUI INIZIA LA SEZIONE HOW ITS WORK */

.how-it-works-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff;
    box-sizing: border-box;
}

.how-it-works-section .section-heading {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
    max-width: 800px;
    box-sizing: border-box;
}

.how-it-works-section .section-heading .heading-main {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #3729bd;
    font-size: 28px;
    line-height: 1.3;
    display: block;
}

.how-it-works-section .section-heading .heading-subtitle {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    color: #1a2948;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    margin-top: 5px;
}

.how-it-works-section .section-heading .heading-description {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 22px;
    line-height: 1.5;
    display: block;
    margin-top: 15px;
}

.how-it-works-section .steps-list-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 100%;
    max-width: 1139px;
    box-sizing: border-box;
}

.how-it-works-section .step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    padding: 30px 20px;
    background-color: #ffffff;
    text-align: center;
    box-sizing: border-box;
}

.how-it-works-section .step-icon-wrapper {
    width: 60px;  
    height: 60px; 
    display: flex;
    align-items: center;   
    justify-content: center; 
    margin-bottom: 15px; 
    box-sizing: border-box;
}

.how-it-works-section .step-card-icon {
    width: 60px; 
    height: 60px; 
    object-fit: contain;  
}


.how-it-works-section .step-card-icon-variant-3 {
    width: 60px; 
    height: 55px; 
}

.how-it-works-section .step-card-title {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #0b1959;
    font-size: 17.9px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0;
    min-height: calc(17.9px * 1.3 * 2); 
    margin-bottom: 15px; 
}

.how-it-works-section .step-card-description {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 16.1px;
    line-height: 1.5;
    min-height: calc(16.1px * 1.5 * 3); 
    flex-grow: 1;
}

/* breakpoint 1000px */

@media (max-width: 1000px) {

    .how-it-works-section {
        padding: 40px 15px; 
    }

    .how-it-works-section .section-heading {
        margin-bottom: 30px; 
        padding: 0 15px; 
        max-width: 700px; 
    }

    .how-it-works-section .section-heading .heading-main {
        font-size: 24px; 
    }

    .how-it-works-section .section-heading .heading-subtitle {
        font-size: 42px; 
    }

    .how-it-works-section .section-heading .heading-description {
        font-size: 19px; 
    }

    .how-it-works-section .steps-list-container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px; 
        max-width: 700px; 
        padding: 0 15px; 
    }

    .how-it-works-section .step-card {
        padding: 35px 20px; 
    }

    .how-it-works-section .step-icon-wrapper {
        width: 50px;  
        height: 50px;
        margin-bottom: 15px; 
    }
    
    .how-it-works-section .step-card-icon {
        width: 50px;
        height: 50px;
    }
    .how-it-works-section .step-card-icon-variant-3 {
        width: 50px;
        height: 45px; 
    }

    .how-it-works-section .step-card-title {
        font-size: 18px; 
        line-height: 1.3;
        min-height: calc(16px * 1.3 * 2); 
        margin-bottom: 15px; 
    }

    .how-it-works-section .step-card-description {
        font-size: 16px; 
        line-height: 1.5;
        min-height: calc(14px * 1.5 * 3); 
    }

}

/* breakpoint 500px */

@media (max-width: 500px) {
    
    .how-it-works-section {
        padding: 30px 10px; 
    }

    .how-it-works-section .section-heading {
        margin-bottom: 25px; 
        padding: 0 10px; 
        max-width: 100%; 
    }

    .how-it-works-section .section-heading .heading-main {
        font-size: 24px; 
    }

    .how-it-works-section .section-heading .heading-subtitle {
        font-size: 35px; 
    }

    .how-it-works-section .section-heading .heading-description {
        font-size: 18px; 
    }

    .how-it-works-section .steps-list-container {
        grid-template-columns: 1fr; 
        gap: 0px; 
        max-width: 350px; 
        margin: 0 auto; 
        padding: 0 10px; 
    }

    .how-it-works-section .step-card {
        padding: 30px 15px; 
    }

    .how-it-works-section .step-icon-wrapper {
        width: 45px; 
        height: 45px;
        margin-bottom: 10px; 
    }

    .how-it-works-section .step-card-icon {
        width: 45px;
        height: 45px;
    }
    .how-it-works-section .step-card-icon-variant-3 {
        width: 45px;
        height: 40px; 
    }

    .how-it-works-section .step-card-title {
        font-size: 18px; 
        line-height: 1.3;
        min-height: calc(15px * 1.3 * 2); 
        margin-bottom: 10px; 
    }

    .how-it-works-section .step-card-description {
        font-size: 16px; 
        line-height: 1.5;
        min-height: calc(13px * 1.5 * 3); 
    }
}


/* QUI INIZIA LA SEZIONE COMING SOON */

.coming-soon {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    width: 100%;
    max-width: 1440px;
    min-height: 250px; 
    padding: 49px 20px;
    position: relative;
    background-image: url(asset/sfondocomingsoon4.svg);
    background-size: cover;
    background-position: 50% 50%;
    box-sizing: border-box;
    margin-left: auto; 
    margin-right: auto; 
}

.coming-soon .frame {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 0px;
    position: relative;
    align-self: center; 
    width: 100%;
    flex: 0 0 auto;
}

.coming-soon .text-wrapper {
    position: relative;
    width: 100%; 
    max-width: 1137px;
    margin-top: -1.00px; 
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: 50px;
    text-align: center;
    letter-spacing: 3.00;
    line-height: normal;
    word-break: break-word;
}

/* Breakpoint 1000px */
@media (max-width: 1000px) {
    .coming-soon {
        min-height: 230px; 
        padding: 30px 15px;
    }

    .coming-soon .text-wrapper {
        font-size: 42px;
        letter-spacing: 2px;
    }
}

/* Breakpoint 768px */
@media (max-width: 768px) {
    .coming-soon {
        min-height: 210px; 
        padding: 25px 10px;
    }

    .coming-soon .text-wrapper {
        font-size: 36px;
        letter-spacing: 1.5px;
    }
}

/* Breakpoint 500px */
@media (max-width: 500px) {
    .coming-soon {
        min-height: 200px; 
        padding: 20px 10px;
    }

    .coming-soon .text-wrapper {
        font-size: 28px;
        letter-spacing: 1px;
    }
}


/* QUI INIZIA LA SEZIONE CARTA E TELEFONO */

.carta-e-telefono {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    min-height: 800px; 
    padding: 50px 20px; 
    background-color: #ffffff;
    box-sizing: border-box;
}

.carta-e-telefono .carta-lockerpay {
    flex-shrink: 0;
    margin-right: 5%; 
    display: flex; 
    justify-content: center;
    align-items: center;  
}

.carta-e-telefono .carta-lockerpay-image {
    width: 501px; 
    max-width: 100%; 
    height: auto; 
    border-radius: 20px; 
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    box-shadow:
        0px 2px 5px rgba(0, 0, 0, 0.08), 
        0px 8px 20px rgba(0, 0, 0, 0.15),
        0px 25px 50px rgba(0, 0, 0, 0.35), 
        inset 0px 1px 0px rgba(255, 255, 255, 0.15); 
}

.carta-e-telefono .frame-portrait {
    width: 35%; 
    max-width: 500px; 
    height: auto; 
    object-fit: cover;
    margin-left: 5%; 
    flex-shrink: 0;
    filter: drop-shadow(10px 10px 10px rgba(50, 50, 50, 0.7));
}


/* Breakpoint 1000px */
@media (max-width: 1000px) {
    .carta-e-telefono {
        padding: 40px 15px;
    }

    .carta-e-telefono .carta-lockerpay {
        margin-right: 3%;
    }

    .carta-e-telefono .carta-lockerpay-image {
        width: 400px; 
    }

    .carta-e-telefono .frame-portrait {
        width: 35%;
        max-width: 400px;
        margin-left: 3%;
    }
}

/* Breakpoint 768px  */
@media (max-width: 768px) {
    .carta-e-telefono {
        flex-direction: column; 
        min-height: auto;
        padding: 30px 10px;
    }

    .carta-e-telefono .carta-lockerpay {
        margin-right: 0;
        margin-bottom: 30px; 
        margin-top: 10px;
    }

    .carta-e-telefono .carta-lockerpay-image {
        width: 380px; 
    }

    .carta-e-telefono .frame-portrait {
        width: 60%;
        max-width: 350px;
        margin-left: 0;
    }
}

/* Breakpoint 500px  */
@media (max-width: 500px) {
    .carta-e-telefono {
        padding: 50px 10px;
    }

    .carta-e-telefono .carta-lockerpay {
        margin-bottom: 30px;
    }

    .carta-e-telefono .carta-lockerpay-image {
        width: 300px; 
    }

    .carta-e-telefono .frame-portrait {
        width: 70%;
        max-width: 300px;
    }
}

/* QUI INIZIA LA SEZIONE FAQ */

.FAQ {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    width: 100%; 
    max-width: 1440px; 
    margin: 0 auto; 
    padding: 39px 20px; 
    position: relative;
    background-color: #ffffff;
    box-sizing: border-box; 
    min-height: 250px; 
}

.FAQ .domande-frequenti {
    width: 100%; 
    max-width: 1140px; 
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-weight: 400; 
    color: transparent; 
    font-size: 28.5px; 
    text-align: center; 
    letter-spacing: 0;
    line-height: normal;
}

.FAQ .text-wrapper {
    font-weight: 500;
    font-family: "Jost", Arial, Helvetica, sans-serif;
    color: #3729bd; 
    font-size: 28.5px; 
    display: block; 
    margin-bottom: 10px; 
}

.FAQ .span {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    color: #0b1959; 
    font-size: 40px; 
    display: block; 
    margin-bottom: 15px; 
}

.FAQ .text-wrapper-2 {
    font-family: "Jost", Arial, Helvetica, sans-serif;
    color: #0b1959; 
    font-size: 24px; 
    display: block; 
}

/* Breakpoint 1000px */
@media (max-width: 1000px) {
    .FAQ {
        padding: 30px 15px; 
        min-height: 200px;
    }

    .FAQ .text-wrapper {
        font-size: 24px; 
        margin-bottom: 8px;
    }

    .FAQ .span {
        font-size: 34px; 
        margin-bottom: 12px;
    }

    .FAQ .text-wrapper-2 {
        font-size: 20px; 
    }
}

/* Breakpoint 768px */
@media (max-width: 768px) {
    .FAQ {
        padding: 25px 10px; 
        min-height: 180px;
    }

    .FAQ .text-wrapper {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .FAQ .span {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .FAQ .text-wrapper-2 {
        font-size: 18px;
    }
}

/* Breakpoint 500px */
@media (max-width: 500px) {
    .FAQ {
        padding: 20px 10px; 
        min-height: 150px;
    }

    .FAQ .text-wrapper {
        font-size: 18px; 
        margin-bottom: 5px;
    }

    .FAQ .span {
        font-size: 24px; 
        margin-bottom: 8px;
    }

    .FAQ .text-wrapper-2 {
        font-size: 16px; 
    }
}

/* QUI INIZIA LA FAQ SECTION */

.faq-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    background-color: #ffffff;
    padding-bottom: 100px;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: left;
    max-width: 1140px; 
    margin: 0 auto;
    padding: 0 10px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 20px; 
    background-color: #ffffff;
    cursor: pointer;
    font-family: "Jost", Arial, Helvetica, sans-serif;
    color: #0b1959;
    font-weight: 500;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.08);
}

.faq-question:hover {
    background-color: #f0f0f5;
}

.faq-question h3 {
    margin: 0;
    flex-grow: 1; 
    font-size: 18px; 
    line-height: 1.4; 
    color: inherit;
    padding-right: 15px; 
}

.faq-toggle-icon {
    flex-shrink: 0;
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.6s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    transition: max-height 0.6s ease-out, opacity 0.6s ease-out, padding 0.6s ease-out;
}

.faq-answer p {
    margin: 15px 0;
    font-family: "Jost", Arial, Helvetica, sans-serif;
    font-size: 17px;
    text-align: justify;
    color: #0b1959;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 15px 20px;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}


/* Breakpoint 1000px  */
@media (max-width: 1000px) {
    .faq-section {
        padding: 20px;
        padding-bottom: 80px;
    }
    .faq-container {
        gap: 30px;
        padding: 0 15px;
    }
    .faq-question {
        padding: 18px;
    }
    .faq-question h3 {
        font-size: 16px; 
        padding-right: 10px;
    }
    .faq-answer p {
        font-size: 16px;
    }
}


/* Breakpoint 768px */
@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr; 
        gap: 25px;
        max-width: 600px;
        padding: 0 20px;
    }
    .faq-section {
        padding: 20px;
        padding-bottom: 60px;
    }
    .faq-question {
        padding: 18px;
    }
    .faq-question h3 {
        font-size: 16px;
    }
    .faq-answer p {
        font-size: 15px;
    }
}

/* Breakpoint 500px  */
@media (max-width: 500px) {
    .faq-section {
        padding: 15px;
        padding-bottom: 40px;
    }
    .faq-container {
        gap: 20px;
        padding: 0 10px;
    }
    .faq-question {
        padding: 15px;
    }
    .faq-question h3 {
        font-size: 15px;
        line-height: 1.3;
    }
    .faq-toggle-icon {
        font-size: 1em;
    }
    .faq-answer p {
        font-size: 14px;
    }
}

/* QUI INIZIA IL FOOTER */
.main-footer {
    background-image: url(asset/sfondocomingsoon3.svg);
    background-size: cover;
    color: #ffffff; 
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 0; 
    padding-left: 20px; 
    font-family: "Jost", Arial, Helvetica, sans-serif;
    text-align: center; }

.footer-container {
    max-width: 1440px; 
    margin: 0 auto; 
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    gap: 0px; 
}

.footer-info {
    flex: 1; 
    min-width: 280px; 
    text-align: left; 
    width: 100%; 
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: 20px;
    padding-left: 132px; 
}

.footer-logo img {
    width: 100px; 
    height: auto;
    filter: grayscale(100%) brightness(180%) contrast(80%);
}

.footer-logo span {
    font-size: 24px;
    font-family: "Julius Sans One", Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    filter: grayscale(100%) brightness(180%) contrast(80%);
}

.company-address {
    font-style: normal; 
    font-size: 18px;
    line-height: 1.6;
    color: #f0f0f5; 
    margin-left: 142px; 
    padding-bottom: 15px; 
    margin-bottom: 0px;  
    width: calc(100% - 284px); 
}

.company-address a {
    color: #3fff70; 
    text-decoration: none; 
    transition: color 0.3s ease;
}

.company-address a:hover {
    color: #ffffff; 
    text-decoration: underline; 
}

.footer-copyright {
    text-align: center; 
    font-size: 16px;
    color: #ffffff; 
    width: 100%; 
    margin-bottom: 20px;    
}

@media (max-width: 768px) {
    .footer-container {
        align-items: center; 
        gap: 30px; 
    }

    .footer-info {
        text-align: center; 
        min-width: unset; 
        width: 100%; 
    }
    
    .footer-logo {
        padding-left: 0; 
        justify-content: center; 
    }

    .company-address {
        margin-left: 0; 
        width: 100%; 
    }


}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 15px 30px; 
    }

    .footer-logo span {
        font-size: 20px;    
     }

    .company-address,
    .footer-copyright {
        font-size: 14px; 
    }
}

/* Stili per la scrollbar personalizzata */

/* Per WebKit browsers (Chrome, Safari, Edge basati su Chromium, Opera) */
/* La scrollbar intera */
::-webkit-scrollbar {
    width: 12px; 
    height: 12px; 
}

::-webkit-scrollbar-track {
    background: rgb(1, 0, 47, 1); 
    border-radius: 0px; 
}


::-webkit-scrollbar-thumb {
    background-color: rgb(68, 23, 186); 
    border-radius: 0px; 
    border: 3px solid rgb(68,23,186); 
}

::-webkit-scrollbar-thumb:hover {
    background-color: #1a2a7a; 
}

/* Per Firefox */
html {
    scrollbar-width: auto; 
    scrollbar-color: rgb(68,23, 186, 1) #f0f0f0; 
}

body {
    -ms-overflow-style: -ms-autohiding-scrollbar; 
    -webkit-user-select: none;  
    -moz-user-select: none;     
    -ms-user-select: none;      
    user-select: none;          
}

/* --- ANIMAZIONE SCROLL REVEAL --- */


.fade-in-section {
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 1s ease-out, transform 1s ease-out;
    position: relative; 
    will-change: opacity, transform; 
    backface-visibility: hidden; 
}

.fade-in-section.is-visible {
    opacity: 1; 
    transform: translateY(0); 
}