.ingredients-section {
    padding: 30px 20px 40px 20px;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
}

.ingredients-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ingredients-text {
    flex: 1;
}

.ingredients-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 30px;
    color: #000;
}

.ingredient-item {
    margin-bottom: 15px;
}

.ingredient-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #000;
}

.ingredient-item p {
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
    color: #333;
}

.ingredients-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-small {
    width: 98px;
    height: 98px;
    margin-bottom: 10px;
    fill: #73a0c5;
    color: #73a0c5;
}

.icon-box span {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.ingredients-image-wrapper {
    flex: 0 0 600px;
    height: 600px;
}

.ingredients-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .ingredients-container {
        flex-direction: column;
        gap: 40px;
    }

    .ingredients-image-wrapper {
        order: -1;
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .ingredients-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ingredients-section {
        padding: 30px 15px 0;
    }

    .ingredients-title {
        font-size: 24px;
        text-align: left;
        margin-bottom: 20px;
    }
}