*{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
}

/* Import des polices */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');

.container {
    width: 80%;
    margin: 0 auto;
    text-align: left;
}

h1 {
    font-size: 36px;
    color: #1c1c1c;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    transition: color 0.3s ease;
}
h1:hover {
    cursor: pointer;
    color: #2b8add; /* Changement de couleur au survol */
}
h2 {
    font-size: 24px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s ease; /* Ajout de la transition sur la couleur */
}

h2:hover {
    color: #2b8add; /* Changement de couleur au survol */
}
img{
    height: 300px;
    width: 50%;
    object-fit: contain;
}
p {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: justify;
    line-height: 30px;
}
.panel {
    display: none;
    padding: 10px 0;
}

.accordion.active .panel {
    display: block;
}
