/* Navbar */
.navbar {
    background-color: white; /* Colore blu */
    padding: 10px 20px;
  }
  
  /* Logo */
  .navbar-brand img {
    height:30px; /* Dimensione del logo */
    transition: 0.3s;
  }
  
  .navbar-brand img:hover {
    transform: scale(1.1);
  }
  
  /* Link del menu */
  .navbar-nav .nav-link {
    color: darkblue !important;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .navbar-nav .nav-link:hover {
    color: #ffc107 !important; /* Giallo Bootstrap */
  }


.container {
    width: 100%;
    padding: 20px;
    color: #000;
    height: auto;
    vertical-align:central;
}


.col {
    width: 100%;
    height: auto;
    align-content:center;
    align-items:center;
   
}


.step {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    padding: 10px;
    border-left: 6px solid #06068a;
    background: #d5effa;
    border-radius: 8px;
   
    
    /*background-image: image()*/
}



    /* Allinea la navbar al centro su dispositivi più piccoli */
    @media (max-width: 991px) {
        .navbar-collapse {
            text-align: center;
        }
    }



.image-group {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; /* Vertical centering */
}

/* Layout principale diviso in due colonne */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60vh;
    padding: 30px;
}

.text-section {
    padding: 20px;
}

.image-section {
    text-align: center;
}

    .image-section img {
        max-width: 30%;
        height: auto;
    }

/* Pulsante */
.button {
    background-color: darkblue;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.7rem;
    cursor: pointer;
    margin-top: 10px;
    height: 10%;
    width: 30%;
}

    .button:hover {
        background-color: #0044cc;
    }

/* Mobile responsive */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
        height: auto;
    }

    .text-section, .image-section {
        width: 100%;
    }
}



h1 {
    text-align: center;
    color: #06068a;
    font-size: 2em; /* Migliorato il valore */
}



h2 {
    text-align: left;
    color: #1a1aff;
    font-size: 0.7em; /* Correzione per rendere il font più leggibile */
}



h3 {
    text-align: center;
    color: #000;
    font-size: 0.7em; /* Migliorato il valore */
}



h4 {
    text-align: center;
    color: maroon;
    font-size: 1em; /* Migliorato il valore */
    font-style: italic;
    width: 100%;
}



h5 {
    text-align: left;
    color: #ed0740;
    font-size: 2em; /* Migliorato il valore */
    font-style:normal;
    font-display: revert-layer;
    width: 100%;
}


h6 {
    text-align: right;
    color: #06068a;
    font-size: 1em; /* Migliorato il valore */

    font-style: normal;
}



h7 {
    text-align: left;
    color: #000;
    font-size: 0.8em; /* Migliorato il valore */
}



h8 {
    text-align: left;
    color: #000;
    font-size: 0.7em;
}


h9 {
    text-align: left;
    color: darkblue;
    font-size: 1em; /* Migliorato il valore */
}

h10 {
    text-align: center;
    color: darkblue;
    font-size: 1.5em; /* Migliorato il valore */
}



.button {
    background-color: #06068a;
    color: white;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: darkblue;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
}

    .footer a {
        color: white;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

/* Header */
.header {
    background-color: darkblue;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
}

    .header a {
        color: white;
        text-decoration: none;
    }

        .header a:hover {
            text-decoration:revert-layer;
        }

