# Réponse finale obtenue du bot:
response = « Certainement! Voici un exemple de code CSS pour un conseiller / conseillère d’orientation pour universitaires :
« `css
/* Styles for the headings */
h1 {
font-size: 36px;
font-weight: bold;
text-align: center;
}
h2 {
font-size: 24px;
font-weight: bold;
text-align: center;
}
/* Styles for the paragraphs */
p {
font-size: 18px;
line-height: 1.5;
margin-bottom: 20px;
}
/* Styles for the lists */
ul, ol {
list-style-type: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 10px;
}
/* Styles for the links */
a {
color: #007bff;
text-decoration: none;
}
a:hover {
color: #0056b3;
}
« `
Note that this code is just an example and you may need to adjust the styles based on your specific needs. »