.ingredients-infographic {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ingredients-header {
    text-align: center;
    margin-bottom: 30px;
}

.ingredients-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5282;
    margin: 0;
    line-height: 1.2;
}

.ingredients-header .subtitle {
    font-size: 1.5rem;
    color: #4a90a4;
    font-weight: 600;
    margin: 5px 0 0 0;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
}

.ingredient-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-2px);
}

.ingredient-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.tea-tree { background: linear-gradient(45deg, #2d5016, #4a7c59); }
.clove-tree { background: linear-gradient(45deg, #8b4513, #daa520); }
.linseed { background: linear-gradient(45deg, #ff8c00, #ffd700); }
.lemongrass { background: linear-gradient(45deg, #9acd32, #adff2f); }
.tocopherol { background: linear-gradient(45deg, #ffd700, #ffffe0); }
.almond-tree { background: linear-gradient(45deg, #d2691e, #f4a460); }

.ingredient-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5282;
    margin: 0;
    flex: 1;
}

.ingredient-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingredient-benefits li {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.ingredient-benefits li:before {
    content: "●";
    color: #38a169;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Responsive design */
@media (max-width: 768px) {
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ingredients-header h2 {
        font-size: 1.5rem;
    }
    
    .ingredients-header .subtitle {
        font-size: 1.2rem;
    }
    
    .ingredient-card {
        padding: 15px;
    }
    
    .ingredient-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .ingredient-icon {
        margin-right: 0;
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
    }
    
    .ingredient-name {
        font-size: 1.1rem;
    }
    
    .ingredient-benefits li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ingredients-infographic {
        padding: 15px;
        margin: 0.5rem 0;
    }
    
    .ingredients-header h2 {
        font-size: 1.3rem;
    }
    
    .ingredients-header .subtitle {
        font-size: 1rem;
    }
    
    .ingredient-card {
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .ingredient-name {
        font-size: 1rem;
    }
    
    .ingredient-benefits li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
}