.hero-img {
    width: min(70%, 900px); /* mai più larga di 900px */
    max-height: 40vh;
    object-fit: contain;
    display: block;      /* permette il centramento */
    margin: 0 auto;      /* centra l'immagine */
}

/* Contenitore hero */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;   /* centra orizzontalmente */
    align-items: center;       /* centra verticalmente se serve */
    padding: 20px 0;           /* spazio sopra e sotto */
}

/* ============================
   INTRODUZIONE
   ============================ */

.intro-section {
    text-align: center; /* centra tutto */
}

.intro-title {
    margin-bottom: 20px;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;      /* centra il blocco */
    line-height: 1.7;
    font-size: 1.1rem;
}



/* ============================
   PROGETTO PRINCIPALE
   ============================ */

.main-product {
    padding: 40px 0;
    text-align: center; /* centra titolo e contenuto */
}

.main-product-title {
    margin-bottom: 20px;
}

.main-product-card {
    background-color: var(--blue-light);
}

.main-product-card p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.main-product-card img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
}
