.ingredient-box {
    background: #fff;
    margin-bottom: 20px;
    position: relative;
}

.ingredient-header {
    background: #1B3B56;
    padding: 10px 20px;
    position: relative;
}

.ingredient-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #F15A24 transparent transparent transparent;
}

.ingredient-name {
    color: white;
    font-weight: bold;
}

.ingredient-content {
    padding: 20px;
}

.ingredient-description {
    line-height: 1.6;
    margin: 0;
}