.collapse-block__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.collapse-block__header {
    padding: 12px 48px 12px 20px;
    background: #f2f1ed;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}
.collapse-block__header:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0,-50%);
    transition: transform 0.2s ease;
    width: 18px;
    height: 18px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11.9995%2016.8001C11.2995%2016.8001%2010.5995%2016.5301%2010.0695%2016.0001L3.54953%209.48014C3.25953%209.19014%203.25953%208.71014%203.54953%208.42014C3.83953%208.13014%204.31953%208.13014%204.60953%208.42014L11.1295%2014.9401C11.6095%2015.4201%2012.3895%2015.4201%2012.8695%2014.9401L19.3895%208.42014C19.6795%208.13014%2020.1595%208.13014%2020.4495%208.42014C20.7395%208.71014%2020.7395%209.19014%2020.4495%209.48014L13.9295%2016.0001C13.3995%2016.5301%2012.6995%2016.8001%2011.9995%2016.8001Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
}
.collapse-block__header_active:after {
    transform: translate(0,-50%) rotate(-180deg);
}
.collapse-block__header_active + .collapse-block__body {
    display: block;
}
.collapse-block__body {
    padding-top: 10px;
    padding-left: 20px;
    display: none;
}