.accordeon {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.accordeon-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    cursor: pointer;
}

.accordeon-item {
    padding: 35px;
    border: 1px solid #ccc;
    border-radius: 15px;
    background: #fff;
}

.accordeon-body {
    transition: 0.3s ease;
    display: none;
}

.accordeon-header p {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: unset;
    color: #000;

}

.accordeon-header svg {
    height: 32px;
    width: 32px;
    cursor: pointer;
    transform-origin: center;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.accordeon-item:not(.active) svg {
    transform: rotate(45deg);
}

.accordeon-item.active .accordeon-body {
    display: block;
    margin-top: 30px;
}