/* ===== MAIN CONTAINER ===== */
/* .main-content-hero {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 2rem;
} */

/* ===== BIO SECTION ===== */
.home-bio-section {
    text-align: center;
}

/* Titolo principale */
.home-bio-section h2 {
    letter-spacing: -1px;
    font-size: 2.2rem;
    font-weight: 700;
}

/* Sottotitolo serif */
.italic {
    font-style: italic;
    font-family: Georgia, serif;
    letter-spacing: 1px;
}

/* Paragrafo descrizione */
.home-bio-section .lead {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #6c757d;
}

/* ===== STATS SECTION ===== */
.stats-box {
    padding: 20px 10px;
    border-radius: 12px;
    background: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stats-box:hover {
    background: #f8f9fa;
    border-color: rgba(0,0,0,0.05);
}

.stats-box i {
    font-size: 1.5rem;
    opacity: 0.6;
    margin-bottom: 10px;
}

.stats-box h4 {
    font-size: 1.5rem;
    margin: 8px 0 0;
    letter-spacing: -1px;
}

.stats-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
    color: #6c757d;
}

/* ===== FEATURE SECTION ===== */
.feature-box {
    border-left: 3px solid #2d3436;
    padding-left: 15px;
    margin-bottom: 1.5rem;
}

.feature-box h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-box p {
    font-size: 0.85rem;
    color: #6c757d;
}

.feature-box i {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.feature-box:hover i {
    transform: translateY(-5px);
    opacity: 1;
}