

.faq-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 300px;
    padding: 30px 20px 20px 20px;
    box-sizing: border-box;
}

.faq-block h1 {
    font-size: 32px;
    font-family: STIX Two Text;
    font-weight: 700;
    line-height: 1.5;
}

.faq-block .description {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 30px 0 0 0;
    box-sizing: border-box;
}

.faq-block .buttons {
    position: relative;
    display: flex;
    gap: 20px;
    padding-top: 50px;
    box-sizing: border-box;
}

.faq-block .faqs {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
    box-sizing: border-box;
}

.faq-block .faqs .faq-item {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0 10px 0;
    border-top: 1px solid black;
}

.faq-block .faqs .faq-item-end {
    border-bottom: 1px solid black;
}

.faq-block .faqs .faq-item .question {
    position: relative;
    font-size: 18px;
    font-family: Noto Sans;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    padding: 20px;
    box-sizing: border-box;
}

.faq-block .faqs .faq-item .question:hover {
    background: #195ee2;
    color: white;
}

.faq-block .faqs .faq-item .question:hover svg {
    fill: white;
}

.faq-block .faqs .faq-item .answer {
    font-size: 16px;
    font-family: Noto Sans;
    font-weight: 400;
    color: #555;
    padding: 20px;
    box-sizing: border-box;
}

.faq-block .arrow-down {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    cursor: pointer;
}

.faq-block .arrow-up {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    cursor: pointer;
}

.faq-block .arrow-down-icon {
    width: 24px;
    height: 24px;
}

.faq-block .arrow-up-icon {
    width: 24px;
    height: 24px;
}