/* Importa il font Lato da Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

body {
	/* Imposta Lato come font primario */
	font-family: 'Lato', sans-serif;
	line-height: 1.7;
	/* Leggermente più alto per Lato */
	color: #2c3e50;
	/* Un grigio bluastro scuro molto professionale */
	background-color: #f4f7f6;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	max-width: 850px;
	/* Un po' più largo per Lato */
	margin: 50px auto;
	padding: 60px;
	background-color: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border-radius: 12px;
}



/* Titoli */
h1 {
	font-weight: 900;
	/* Versione "Black" di Lato per il titolo principale */
	font-size: 2.5rem;
	color: #1a252f;
	margin-bottom: 1rem;
	text-align: center;
	letter-spacing: -0.5px;
}

h2 {
	font-weight: 700;
	font-size: 1.8rem;
	color: #2c3e50;
	margin-top: 2.5rem;
	border-bottom: 2px solid #ecf0f1;
	padding-bottom: 8px;
}

h3 {
	font-weight: 700;
	font-size: 1.3rem;
	color: #34495e;
	margin-top: 1.8rem;
}

/* Testo e paragrafi */
p {
	font-weight: 400;
	margin-bottom: 1.4rem;
}

/* Liste */
ul,
ol {
	margin-bottom: 1.4rem;
	padding-left: 25px;
}

li {
	margin-bottom: 0.6rem;
}

/* Citazioni o Note importanti */
blockquote {
	margin: 25px 0;
	padding: 20px;
	background-color: #f8f9fa;
	border-left: 4px solid #3498db;
	color: #2c3e50;
	border-radius: 0 8px 8px 0;
}

/* Evidenziato / Data aggiornamento */
strong {
	font-weight: 700;
	color: #1a252f;
}

/* Responsività */
@media (max-width: 768px) {
	.content-wrapper {
		margin: 0;
		padding: 30px 20px;
		border-radius: 0;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}
}