.dehydrated-section {
    background-color: #F4E2CE;
    padding: 30px;
    margin: 30px 0;
    border-radius: 8px;
}

.dehydrated-title {
    color: #1B3B56;
    font-size: 1.4em;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
    font-weight: 700;
}

.dehydrated-description {
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.dehydrated-info {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.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;
}

.process-steps {
    margin: 20px auto;
}

.step-box {
    background:rgb(241, 241, 241);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.step-number {
    font-size: 24px;
    font-weight: bold;
    color: #1B3E76;
    margin-right: 15px;
}

.step-text {
    font-size: 16px;
    line-height: 1.6;
}

.step-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #E86C52;
    margin: 10px auto;
}