/* CSS per ridurre la dimensione di tutti i titoli delle sezioni */

/* About Section - La nostra storia e la nostra missione */
html body .about-enterprise-title {
    font-size: 2.5rem !important; /* Dimensione finale ottimale */
    line-height: 1.2 !important;
}

/* Team Section - Il team che fa la differenza */
html body .team-title {
    font-size: 2.0rem !important; /* Ridotto ulteriormente da 2.5rem */
    line-height: 1.2 !important;
}

/* Services Section - Soluzioni IT innovative per il tuo business */
html body .services-title {
    font-size: 2.5rem !important; /* Ridotto da circa 3.5rem */
    line-height: 1.2 !important;
}

/* Partners Section - Partner */
html body .partners-title {
    font-size: 2.5rem !important; /* Ridotto da circa 3.5rem */
    line-height: 1.2 !important;
}

/* Projects Section - Progetti Realizzati */
html body .projects-enterprise-title {
    font-size: 2.5rem !important; /* Ridotto da circa 3.5rem */
    line-height: 1.2 !important;
}

/* Testimonials Section - Cosa Dicono i Nostri Clienti */
html body .testimonials h2,
html body .testimonials .section-header h2 {
    font-size: 2.5rem !important; /* Ridotto da circa 3.5rem */
    line-height: 1.2 !important;
}

/* Contact Section - Contattaci */
html body .contact h2.gradient-text,
html body .contact .section-header h2.gradient-text {
    font-size: 2.5rem !important; /* Ridotto da circa 3.5rem */
    line-height: 1.2 !important;
}

/* Responsive adjustments - per schermi più piccoli */
@media (max-width: 768px) {
    html body .about-enterprise-title,
    html body .team-title,
    html body .services-title,
    html body .partners-title,
    html body .projects-enterprise-title,
    html body .testimonials h2,
    html body .testimonials .section-header h2,
    html body .contact h2.gradient-text,
    html body .contact .section-header h2.gradient-text {
        font-size: 2rem !important; /* Ancora più piccoli su mobile */
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    html body .about-enterprise-title,
    html body .team-title,
    html body .services-title,
    html body .partners-title,
    html body .projects-enterprise-title,
    html body .testimonials h2,
    html body .testimonials .section-header h2,
    html body .contact h2.gradient-text,
    html body .contact .section-header h2.gradient-text {
        font-size: 1.8rem !important; /* Molto piccoli su schermi molto piccoli */
        line-height: 1.4 !important;
    }
}
