#preguntas {
    margin: 2rem auto 8rem;
}
.preguntas-title > h1, .preguntas-title > h1 > span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 52px;
    font-weight: 600;
    color: #2f2f2f;
    text-align: center;
}
.preguntas-title > span {
    display: block;
    text-align: center;
    font-size: 15px;
    color: #00296b;
    font-weight: 600;
}
.preguntas-body {
    margin: 2rem 0;
}

.question h4 {
    font-size: 24px;
    color: #333;
}
.question p {
    font-size: 16px;
    color: #55555e;
}
.question {
    user-select: none;
    cursor: pointer;
    border-bottom: 1px solid #eaecf0;
    padding: 32px 0;
    margin-bottom: 0.5em;
    display: flex;
    align-items: flex-start;
}
.question .icon::before {
    content: "–";
    font-size: 32px;
    margin-right: 12px;
    line-height: 30px;
    color: #333;
}
.question.active .icon::before {
    content: "+";
}
.question .body p {
    display: none;
    margin-top: 0.5em;
    line-height: 28px;
}
.question .body p a{
    color: #00296b;
    font-weight: 500;
}
.question .body p a:hover{
    text-decoration: underline;
}