body {
 font-family: 'Open Sans', sans-serif;
   background-color: #0B0D10;
    color: white;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700; /* Usa il peso 700 per i titoli */
}

/* Imposta una larghezza massima per le sezioni e centrale */
section {
   margin-top: 35px;
    padding: 20px;
    border-radius: 8px;
    background:  #1A1D21;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    text-align: center;
    margin-left:20%;
    margin-right:20%;
}

/* --- MODIFICA HERO (Aggiunta per sbloccare il 100% di larghezza) --- */
section.hero-new {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.hero-new {
    height: 500px;
    background: url('/images/icon-SLIDE1.jpg') no-repeat center center/cover !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-item img {
    width: 18px !important;
    height: 18px !important;
}
/* --- FINE MODIFICA HERO --- */

.about-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

/* --- PHOTO SCROLLER --- */
.photo-scroller {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: #0B0D10;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid #333;
    padding: 15px 0;
}

.scroller-inner {
    display: inline-block;
    animation: scroll 16s linear infinite; /* Animazione automatica */
}

.scroller-inner img {
    height: 250px;
    width: auto;
    border-radius: 10px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.scroller-inner img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); } /* Regola in base al numero di foto */
}

/* --- LAYOUT CONTENUTI --- */
.about-content-wrapper {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.main-text {
    flex: 2;
    margin: 0 !important;
}

/* --- BOX CERTIFICAZIONI --- */
.certifications-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cert-item {
    background: #1A1D21;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff6666; /* Il tuo rosso */
    transition: 0.3s;
}

.cert-item:hover {
    background: #252a30;
}

.cert-badge {
    background: #ff6666;
    color: white;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 14px;
}

.cert-item p {
    font-size: 14px;
    color: #ccc;
    margin: 0;
}

.location-highlight {
    text-align: center;
    padding: 15px;
    border: 1px dashed #555;
    border-radius: 10px;
    color: #ff6666;
    font-weight: bold;
}