.cuboid-faq-block {
    width: 100%;
    max-width: 760px;
}
.cuboid-faq-item {
    border-bottom: 1px solid #dcdcdc;
}
.cuboid-faq-item:last-child {
    border-bottom: 0px solid #dcdcdc;
}
.cuboid-faq-question {
    width: 100%;
    padding: 18px 40px 18px 0;
    border: 0;
    background: transparent;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cuboid-faq-icon {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    right: -38px;
    position: relative;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-top: -6px;
}
.white-cta .cuboid-faq-icon {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.white-cta .cuboid-faq-question {
    color: #fff;
}
.white-cta .cuboid-faq-answer-inner p {
    color: #fff;
}
.cuboid-faq-question[aria-expanded="true"] .cuboid-faq-icon {
    transform: rotate(225deg);
    margin-top: 6px;
}
.cuboid-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.cuboid-faq-answer-inner {
    padding: 0 0 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}
.cuboid-faq-answer-inner p:last-child {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .cuboid-faq-question {
        font-size: 16px;
        padding: 16px 0;
    }
    .cuboid-faq-answer-inner {
        font-size: 16px;
    }
}