/*Stile Applicazioni Integrali Indefiniti*/
        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --background: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            background: var(--background);
            color: var(--primary);
        }

        .question {
            background: white;
            margin: 2rem 0;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }

        .graph-container {
            height: 350px;
            margin: 1.5rem 0;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            overflow: hidden;
            transition: height 0.3s ease;
            cursor: pointer;
        }

        .graph-container.expanded {
            height: 600px;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .answer-option {
            display: flex;
            align-items: center;
            margin: 0.8rem 0;
            padding: 0.8rem;
            background: #f8f9fa;
            border-radius: 6px;
            transition: transform 0.2s;
        }

        button {
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            background: var(--secondary);
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
        }

        .steps {
            display: none; /* Mantieni questa linea */
            margin-top: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-left: 4px solid var(--secondary);
        }
        /* Aggiungi questa classe per mostrare i passaggi */
        .steps.show {
            display: block;
        }

        @media (max-width: 768px) {
            .comparison-grid {
                grid-template-columns: 1fr;
            }

            .graph-container {
                height: 250px;
            }

            .graph-container.expanded {
                height: 500px;
            }
        }
    .Stile1 {color: #66CC66}
    .Stile2 {color: #FF0000}

    h1[align="center"] {
    color: #000000; /* Rende il testo nero */
    font-size: 40px; /* Puoi scegliere la dimensione che preferisci, qui è un esempio */
}

/* Oppure, se vuoi che tutti gli h1 siano neri e grandi (ma considera i tuoi Stile1 e Stile2) */
/* h1 {
    color: #000000;
    font-size: 40px;
} */
	
	.header-box {
            width: 100%;
            border: 2px dashed #008000;
            box-sizing: border-box;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            min-height: 80px;
        }

        .left-image, .right-image {
            max-height: 50px;
            height: auto;
            margin: 10px;
        }


    img {
        border: none;
		text-align: center;
		  }
    /*
	.Stile4 {color: #000000; }

	.Stile3 {
	color: #333333;
	font-size: larger;
}
*/
    .Stile3 {font-size: 18px}
    .Stile3 {font-size: 24px}
	h1[align="center"] {
    color: #000000; /* Rende il testo nero */
    font-size: 40px; /* Puoi scegliere la dimensione che preferisci, qui è un esempio */
}



.button-link-style {
    display: inline-block; /* Fondamentale: rende il link come un blocco per applicare padding, ecc. */
    text-decoration: none; /* Rimuove la sottolineatura predefinita del link */
    /* Ora applichiamo le stesse proprietà che hai per il tag 'button' */
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    background: var(--secondary, #007bff); /* Usiamo la tua variabile, con un fallback blu se non è definita */
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    /* Aggiungo una transizione per un effetto hover più morbido, come per i button */
    transition: background 0.3s ease;
}

.button-link-style:hover {
    background: var(--secondary-darker, #0056b3); 
}

